PowerShell Splatting Tricks
If you’ve never heard of splatting in PowerShell or possibly read about it but never used it, you should probably consider it. Briefly, splatting is the ability to package up parameters into a hashtable and use the hashtable to supply the parameters to a function call. The parameters which are passed into a function automatically …