Page 1 of 1

Getting Help for Cmdlets in PowerShell

PostPosted: Thu May 05, 2016 9:05 am
by admin
To get more information on any cmdlets or functions in PowerShell, you can just type the following in the PowerShell console :

get-help cmdletname

Where cmdletname is the name of the cmdlet or function.

If the help display for the command is too long and is more than one screenful, you can pipe it to more.

Type in the following:

get-help cmdletname | more