Installation Instructions
Overview:
The following section goes over how to setup the Az Module within PowerShell.
Installation and Setup
Install the Azure PowerShell Module: The Azure PowerShell module can be installed from the PowerShell Gallery. The installation command is as follows:
Install-Module -Name Az -AllowClobber -Scope CurrentUserUpdate the Module: To ensure you have the latest version of the module, you can update it using:
Update-Module -Name AzImport the Module: Once installed, import the module into your PowerShell session:
Import-Module AzSign in to Azure: Authenticate your PowerShell session with Azure using:
Connect-AzAccountLast updated