PowerShell - Using the Help System
in Blog
Introduction to using PowerShell’s Help Commands
Objective
To document some use cases on how to use the Help System to find what you need in PowerShell
Prerequisites
General Windows Operating System Knowledge
PowerShell version 5 or higher
Using the PowerShell Help System
Update your PowerShell Help Files
Ensures you have the latest help files
- Requires internet connection
- Run PowerShell as Administrator
- You may notice a few error messages while trying to update all of the modules. This is normal
Update-Help
Get a list of Modules that support Updatable Help
Get-Module -ListAvailable | Where-Object -Property HelpInfoUri
Obtain full help file from on a specific cmdlet
Get-Help Get-Service -Full
Get the online version of a help file (opens in a broser window)
Get-Help Get-Process -Online
External Links
Microsoft PowerShell Documentation
PowerShell MasterClass YouTube Series - By John Saville
PowerShell in a Month of Lunches - By Don Jones
Channel 9 Series - Getting Started with Powershell
Summary
- Have a question?
- Find an error?
- Have a suggestion on how to improve this page?