In this recipe, we will discuss the steps for managing Azure resources or services using Azure Resource Manager (ARM) PowerShell cmdlets. We will use the discovery cmdlets to list out the Azure cmdlets using keywords or patterns.
Discovering AzureRM cmdlets discovery functions
How to do it...
Getting the Azure cmdlets is a relatively simple task. For the benefit of those who came directly to this chapter, follow these steps:
- Run the following command, which is a chain of Get-Command, Group-Object, Sort-Object, and Format-Table cmdlets, to group all of the available AzureRM cmdlets by verbs:
PS> Get-Command * -Type Cmdlet -Module AzureRM.Net* | Group-Object -Property Verb | Sort-Object Count -Descending | Format-Table...