# Enable access from Remote
Set-ExecutionPolicy RemoteSigned
# Installs latest modules side by side
Install-Module -Name AzureRM -AllowClobber -Force
# Import the module into the PowerShell session
Import-Module AzureRM
# Connect to Azure with an interactive dialog for sign-in
Connect-AzureRmAccount
# Get all version of the modules installed
Get-Module -Name AzureRM -List | select Name,Version
# To make sure the Azure PowerShell module is available after you install
Get-Module -ListAvailable Azure*
Note: This CheatSheet will undergo updates.