Installation Instructions

Overview:

The following section goes over how to setup the Az Module within PowerShell.

Installation and Setup

  1. 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
  1. Update the Module: To ensure you have the latest version of the module, you can update it using:

Update-Module -Name Az
  1. Import the Module: Once installed, import the module into your PowerShell session:

Import-Module Az
  1. Sign in to Azure: Authenticate your PowerShell session with Azure using:

Connect-AzAccount

Last updated