This is it! The last
in this series on how to read PowerShell Help Files.
Help files are available for more than just cmdlets. PowerShell actually has an entire book of
material to help you learn PowerShell built it.
Type this command:
Get-Help About_*
What you see are help files about various aspects of using
PowerShell. You will see help on
programming constructs, PowerShell features, and different elements of the
syntax.
The help concerning programming such as About_IF and
About_Switch start off very basic and adds in additional elements as you
go. I’ve used the About files many times
to solve problems and discover why technologies are not working.
You also have help files for the PowerShell Providers. The PSProviders give you easy access to data
that would otherwise be difficult to access, such as the registry. To see all of your PSProviders:
Get-PSProvider
PS C:\>
Get-PSProvider
Name Capabilities Drives
---- ------------ ------
Registry ShouldProcess, Transactions {HKLM, HKCU}
Alias ShouldProcess {Alias}
Environment ShouldProcess {Env}
FileSystem Filter, ShouldProcess,
Credentials {C, D, E}
Function ShouldProcess {Function}
Variable ShouldProcess {Variable}
Certificate ShouldProcess {Cert}
WSMan Credentials {WSMan}
To get help on each provider, just ask for it by name. For example: Get-Help Registry or Get-Help
FileSystem.
Comments