December 2024
-
If you’ve ever found yourself overwhelmed by the sheer number of parameters in your PowerShell commands, splatting might just be the solution you need. Splatting is a powerful feature in PowerShell that allows you to bundle parameters into a single variable, making your scripts cleaner and more readable.
-
Running a function inside a remote session or ForEach-Object -Parallel can be tricky because the function isn’t available on those computers or sessions. While copying the function’s contents into the scriptblock is an option, it requires revisiting the script whenever the function changes—not the best approach.
-
The tale of the missing property and Register-PSRepository.
-
Ever had a script which contains an array and a foreach loop? And then you want to test the content of the foreach, but only with one entry for troubleshooting purposes for example.