Azure PowerShell Module Az 9.1.1 released

Hi All,

Microsoft has released the AZ 9.1.1 PowerShell Module to the PowerShell Gallery just a few Hours ago.

Az 9.1.1


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)



The AZ Module is just a Wrapper Module for all AZ* Modules

Get-Installed Module AZ*



Regards
Andres Bohren