Azure Module
So when moving into the world of Azure and PowerShell I found there are 1401 total GET commands in the module. I believe there is a long line of work ahead to learn these so I am going to dive right in on the most common ones I can find. Hope you enjoy the website and can find some good use for it.
Once you load/nstall a Module you can use the command below to see what Modules are installed and what command are in each Module. The AZ Module installs a slew of Modules as shown.
Get-Command -Module Az.Accounts
Once the Module is loaded you can use the following command to list the avaialbe CmdLets it provides.
Get-Command -Module Az.Accounts



To install Modules you can use commands shown below:
Install-Module -Name ExchangeOnlineManagement -RequiredVersion 2.0.4
Install-Module -Name AzureAD
Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force
MS Webiste | Getting Started with Azure PowerShell