Summary: Learn how to find related Windows PowerShell commands.
How can I find related commands in Windows PowerShell?
Use the Get-Command cmdlet and sort by the ModuleName property.
For example, to find commands that use the Get verb, use the following command:
Get-Command –Verb get | Sort modulename