Powershell Help
Help
Get-Help Get-Service
Aliases man
or help
uses the more command
Update Help
Powershell 3 and higher
Update-Help
Display the full help with -full
Help Get-EventLog -full
Display help in a separate window with -ShowWindow
Get-Help Get-Help -ShowWindow
Get-Help
Get-Help Get-Process
Get-Help Get-Process -Online
Find a command
Get a list of command
Get-Help *eventlog*
Get-Command *eventlog*
About topics
Powershell has a lot of about topics
help about*
help about_break
help about_operators
Show-Command
Display a form
Show-Command Get-Process
Aliases
get-alias -Definition "Get-Service"
Parameter alias
(get-command get-eventlog | select -ExpandProperty parameters).comp
utername.aliases
List all Object properties of a Collection
Get-Member
gm
Get-Process | Get-Member
Update help
update-help
update-help -UICulture EN-US, nl-NL
Powersehell ISE
Start powershell ISE for powershell
ise
ise .\testscript.ps1
Open file from within ISE
psedit .\testscript.ps1