To prevent output of a command from being displayed you can assign it to a variable or pipe it to out-null
c:\ > Get-Services | out-null
check help
c:\ > Get-Help out-null
To prevent output of a command from being displayed you can assign it to a variable or pipe it to out-null
c:\ > Get-Services | out-null
check help
c:\ > Get-Help out-null
Just type help at the powershell prompt
PS C:\>help PS C:\>help <string> PS C:\>Get-Help <string> (the string can be a wild card)useful help topics
PS C:\>help get-member PS C:\>help get-command PS C:\>help where-object PS C:\>help about-object