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