Public/Invoke-Show.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<#
.Description Gets functions for all AdminToolbox Modules and then allows selecting one for show-command .Link https://github.com/TheTaylorLee/AdminToolbox #> function Invoke-Show { [cmdletbinding()] [Alias ('show')] param ( ) $Command = Get-Command -Module AdminToolbo* | Out-GridView -PassThru Show-Command $command.Name } |