Azure PowerShell Module AZ 16.3.0 released

Azure PowerShell Module AZ 16.3.0 released

Hi All,

Just a few hours ago, a new Version of the AZ (Azure) PowerShell Module has been released to PowerShell Gallery.

I am using the new PSResourceGet here instead of the PowerShellGet commands.

Make sure you use the Microsoft.PowerShell.PSResourceGet 1.2.0

Show installed Versions and what’s available in PowerShell Gallery

Get-InstalledPSResource -Name AZ -Scope CurrentUser
Find-PSResource -Name AZ -Repository PSGallery

Uninstall the old Modules

Uninstall-PSResource AZ -Scope CurrentUser -SkipDependencyCheck
Uninstall-PSResource AZ.* -Scope CurrentUser -SkipDependencyCheck

Now i can install the newest AZ Module and list all the AZ.* Modules

Install-PSResource -Name AZ -Scope CurrentUser
Get-InstalledPSResource -Name AZ -Scope CurrentUser

List all the AZ.* Modules

Get-InstalledPSResource -Name AZ.* -Scope CurrentUser

Some Testing

Connect-AzAccount -Tenant icewolfch.onmicrosoft.com
Get-AzStaticWebApp
Disconnect-AzAccount

Or you can simply use my M365PSProfile Module - find the Documentation here: GitHub Documentation

# Install-PSResource -Name M365PSProfile
# Add-M365PSProfile
Install-M365Module -Modules AZ -Scope CurrentUser

Regards
Andres Bohren

Azure Logo

PowerShell Logo