Powershell Best Practice #17: Use the same parameter name than the native one
Best Practice: It is recommended to use the same name for your parameter (for your functions) than the native one parameter of the builtin Powershell cmdlets. Explanation: If you create a function which takes as a parameter a computerName, you should use the name : ComputerName Why “ComputerName”? Because many builtin cmdlets use this parameter… Read More »