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 CurrentUser
Update the Module: To ensure you have the latest version of the module, you can update it using:
Update-Module -Name Az
Import the Module: Once installed, import the module into your PowerShell session:
Import-Module Az
Sign in to Azure: Authenticate your PowerShell session with Azure using:
Connect-AzAccount
Last updated