VMware Cloud Community
bshell
Enthusiast
Enthusiast

I modded the Get-VICommand Function... This one will allow you to filter on Verb

I got sick of having to look at all of them at once Smiley Happy

function Get-VICommand{

Param($verb)

if($verb){get-command -pssnapin VMware.VimAutomation.Core,VIPowerShellCommandsSnapin -Verb $verb}

else{get-command -pssnapin VMware.VimAutomation.Core,VIPowerShellCommandsSnapin}

}

0 Kudos
2 Replies
halr9000
Commander
Commander

I highly recommend using Gaurhoth's modification of Antonio's New-HtmlHelp function. End result is really easy to filter by snapin which I find helpful for the Vmware stuff (among others).

My signature used to be pretty, but then the forum software broked it. vExpert. Microsoft MVP (Windows PowerShell). Author, Podcaster, Speaker. I'm @halr9000
0 Kudos
bshell
Enthusiast
Enthusiast

ya... that is nice, but sometimes I just want a quick list Smiley Happy

0 Kudos