Public/Get-Help2.ps1
function Get-Help2 { <# .SYNOPSIS -Taylor Lee Modified 06282019 -Adapted from JacFearsome's github https://github.com/JacFearsome/powershell-scripts .DESCRIPTION Produces a GUI for exploring exploring module commands and viewing help for them. .Link https://github.com/TheTaylorLee/AdminToolbox #> [CmdletBinding()] [alias('help2')] param ( ) $getpath = Get-Module AdminToolbox $trimpath = $getpath.path.TrimEnd('\AdminToolbox.ps1') ."$trimpath\Support\Get-Help2\Powershell-Cmdlet-Explorer.ps1" } |