Azure PowerShell Module Az 8.2.0 released
Hi All,
Yesterday Microsoft has released the Azure PowerShell Module AZ v8.2.0
- PowerShell Gallery Az 8.2.0
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)
Regards
Andres Bohren