Azure PowerShell Module Az 8.1.0 released

Hi All,

A few Hours ago, Microsoft has released the Azure PowerShell Module AZ v8.1.0

Az 8.1.0

Azure PowerShell release notes


Check your current installed Module and what is available on PowerShell Gallery

Get-InstalledModule AZ
Find-Module AZ


I've published a Script in my GitHub Repo to uninstall the old Modules and install the new Modules

Or you can run the Script below to directly execute that Script

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




Check the Modules

Get-InstalledModule AZ
Get-InstalledModule AZ.*



Regards
Andres Bohren