Search

How to find all the Cmdlets with particular Verb


To find all the commands with verb Get, use the Get-Command cmdlet as shown below.

PS C:\> Get-Command -verb get

The output of the above command is shown below.

PowerShell Get-Command cmdlet verb

Related Tutorials