snippetbashTip
Get-Help — Display help information and documentation for PowerShell commands (aliases, cmdlets, and functions)
Viewed 0 times
commandandcliinformationdocumentationhelpget-helpdisplay
windows
Problem
How to use the
Get-Help command: Display help information and documentation for PowerShell commands (aliases, cmdlets, and functions). This command can only be run through PowerShell. More information: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/get-help>.Solution
Get-Help — Display help information and documentation for PowerShell commands (aliases, cmdlets, and functions). This command can only be run through PowerShell. More information: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/get-help>.Display general help information for a specific PowerShell command:
Get-Help {{command}}Display a more detailed documentation for a specific PowerShell command:
Get-Help {{command}} -DetailedDisplay the full technical documentation for a specific PowerShell command:
Get-Help {{command}} -FullPrint only the documentation for a specific parameter of the PowerShell command (use
* to show all parameters), if available:Get-Help {{command}} -Parameter {{parameter}}Print only the examples of the cmdlet, if available:
Get-Help {{command}} -ExamplesList all available cmdlet help pages:
Get-Help *Update the current help and documentation knowledge base using
Update-Help:Update-HelpView an online version of PowerShell command documentation in the default web browser:
Get-Help {{command}} -OnlineCode Snippets
Display general help information for a specific PowerShell command
Get-Help {{command}}Display a more detailed documentation for a specific PowerShell command
Get-Help {{command}} -DetailedDisplay the full technical documentation for a specific PowerShell command
Get-Help {{command}} -FullPrint only the documentation for a specific parameter of the PowerShell command (use `*` to show all parameters), if available
Get-Help {{command}} -Parameter {{parameter}}Print only the examples of the cmdlet, if available
Get-Help {{command}} -ExamplesContext
tldr-pages: windows/Get-Help
Revisions (0)
No revisions yet.