Getting help
PowerShell includes a built-in help system accessible using the Get-Help
command. Gaining confidence using the built-in help system is an important part of working with PowerShell. Script authors and PowerShell developers can easily write their own help content when working with functions, scripts, and script modules.
Updatable help
The concept of updatable help was added in Windows PowerShell 3. It allows users to obtain the most recent versions of their help documentation outside of PowerShell on a web service. Help content can be downloaded and installed using the Update-Help
command in PowerShell.
Which modules support updatable help?
You can view a list of modules that support updatable help by running the following command:
Get-Module -ListAvailable | Where-Object HelpInfoURI
Help for the core components of PowerShell is not part of the PowerShell 7 installation package. Content must be downloaded before it can be viewed...