Show-HtmlHelp.ps1 by Lee Holmes 17 months ago
embed code: <script type="text/javascript" src="http://PoshCode.org/embed/2224"></script>download | new post
From Windows PowerShell Cookbook (O’Reilly) by Lee Holmes
- ##############################################################################
- ##
- ## Show-HtmlHelp
- ##
- ## From Windows PowerShell Cookbook (O'Reilly)
- ## by Lee Holmes (http://www.leeholmes.com/guide)
- ##
- ##############################################################################
- <#
- .SYNOPSIS
- Launches the CHM version of PowerShell help.
- .EXAMPLE
- Show-HtmlHelp
- #>
- Set-StrictMode -Version Latest
- $path = (Resolve-Path c:\windows\help\mui\*\WindowsPowerShellHelp.chm).Path
- hh "$path::/html/defed09e-2acd-4042-bd22-ce4bf92c2f24.htm"
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.
PowerShell Code Repository