Making Powershell ready for use
Before we can use the Powershell commands we need to add the cmdlets to powershell
On Windows 10 we do not have to download and install the Windows Management Framework, but other distributions need it.
First install the cmdlets
PS C:\> Install-Module AzureRM
PS C:\> Install-AzureRM
Then import the cmdlets for use
PS C:\> Import-AzureRM