What is -slow parameter?

Hi,

I am new to PowerShell. I wanted to know what is the function of -slow parameter in powershell and how can I get help on these parameters?

That’s not a common parameter Get-Help about_commonParameters.

You would need to check the documentation of the cmdlet that you’re using to see what that parameter does. If it has properly written help, you should be able to do:

Get-Help <cmdlet name> -Parameter <parameter name> e.g.
Get-Help Get-ChildItem -Parameter Path

1 Like