Azure PowerShell Module Az 9.0.1 released

Hi All,

Less than a Week ago, Microsoft has released AZ PowerShell 9.0.0. Now they have again released a new Version 9.0.1. According to the Release Notes there are some breaking Changes and some newer API Versions included.

Az 9.0.1

Azure PowerShell release notes


Show Installed AZ Module and what's available in the PowerShell Gallery

Get-InstalledModule AZ -AllVersions
Find-Module AZ




To uninstall all the old Modules and install the new Modules i have written a PowerShell Script that is published at my GitHub Repo.

#Run Script directly from GitHub
$ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/main/Azure/Cleanup-AZModules.ps1"
Invoke-Expression $($ScriptFromGitHub.Content)



Show all AZ Modules

Get-InstalledModule AZ*





Regards
Andres Bohren