# encoding: ascii
# api: powershell
# title: Show-HtmlHelp.ps1
# description: From Windows PowerShell Cookbook (O’Reilly) by Lee Holmes
# version: 0.1
# author: Lee Holmes
# license: CC0
# x-poshcode-id: 2224
# x-archived: 2016-03-18T22:01:38
# x-published: 2011-09-09T21:42:00
#
#
##############################################################################
##
## 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"