New-HtmlHelp from VMWare modification
If you haven't already heard of New-HtmlHelp, you should visit http://blogs.vmware.com/vipowershell/2007/09/new-htmlhelp.html. One of their team members posted an nifty function to create a set of HTML pages from available Powershell Cmdlets documentation.
I took that function and modified a few lines to add an additional frame on the left side that lists each snapin represented by the list of commands. You can click 'All Cmdlets' to get the complete list or an individual Snap-In for a specific set of cmdlets.
Script is attached to this post.
UPDATE: By the way -- you need the doc-style.css in your current folder when you run the function. You can find it on the Vmware link above.
UPDATE: I was asked to provide an example of usage:
PS D:\ps\functions> New-HtmlHelp (get-command)
Updated to make the modifications optional (use the -groupsnapins switch to get the new behaviour). [September 23, 2007 - 5:06pm EDT]
Comments welcome:
$emailaddress = [string]::join("",("gaurhoth",[char]64,"g","m","a","i","l",".","c","o","m"))