Search

How to find all the Cmdlets with particular Noun

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

PS C:\> Get-Command -noun service

The output of the above command is shown below.

 

PowerShell Get-Command cmdlet noun

Related Tutorials