PowerShell 3.0 and later
Provided you have downloaded PowerShell help via Update-Help, you can create yourself an excellent help topic viewer with just one line of code:
PS> Get-Help about* | Out-GridView –PassThru | Get-Help –ShowWindow
This will display a grid view with all about topics to choose from. Select one, and click OK, to view the help file.