PoshCode Logo PowerShell Code Repository

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

  1. ##############################################################################
  2. ##
  3. ## Show-HtmlHelp
  4. ##
  5. ## From Windows PowerShell Cookbook (O'Reilly)
  6. ## by Lee Holmes (http://www.leeholmes.com/guide)
  7. ##
  8. ##############################################################################
  9.  
  10. <#
  11.  
  12. .SYNOPSIS
  13.  
  14. Launches the CHM version of PowerShell help.
  15.  
  16. .EXAMPLE
  17.  
  18. Show-HtmlHelp
  19.  
  20. #>
  21.  
  22. Set-StrictMode -Version Latest
  23.  
  24. $path = (Resolve-Path c:\windows\help\mui\*\WindowsPowerShellHelp.chm).Path
  25. 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.

Syntax highlighting:


Remember me