Get-Help
PowerShell · Reference cheat sheet
Get-Help
PowerShell · Reference cheat sheet
📋 Overview
Get-Help is the built-in manual for cmdlets, functions, and about topics. Learning to read help is faster than memorizing every parameter. Update help once so examples are available offline.
🔧 Core concepts
| Command | Purpose |
|---|---|
Get-Help Name | Show help for a command |
Get-Help Name -Examples | Example-focused view |
Get-Help Name -Full | Complete help |
Get-Help Name -Online | Open web docs |
Update-Help | Download latest help files |
Get-Command | Find commands by name/pattern |
Tab completion and Get-Command *Item* pair well with help.
💡 Examples
Basic help:
Get-Help Get-ChildItem
Get-Help Get-ChildItem -Examples
Get-Help Get-ChildItem -Parameter FilterDiscover commands then read help:
Get-Command *process*
Get-Help Get-Process -FullAbout topics (concepts):
Get-Help about_Pipelines
Get-Help about_Variables
Get-Help about_* | Select-Object -First 10Update help (may need admin for some scopes):
Update-Help -ErrorAction SilentlyContinue⚠️ Pitfalls
- Fresh installs often have minimal help until
Update-Helpruns. - Help for third-party modules only appears after the module is installed/imported.
-Onlineneeds a browser and network.- Alias help:
Get-Help lsworks, but learningGet-ChildItemis clearer long-term.