There are several ways to get help and additional information in PowerShell:
<command_name> -?
get-command <command_name>
get-help <command_name> -detailed
The detailed view of the command help file includes a description of the command, the command syntax, descriptions of the parameters, and example that demonstrate the use of the command.
<parameter_name>: !?
get-command
get-command | where {$_.DLL -match "XO"} | format-table
alias xo*
get-pssnapin
Copyright © 2015 Arcserve.
All rights reserved.
|
|