Azure PowerShell Module Az 8.3.0 released
Hi All,
Yesterday Microsoft has released the Version 8.3.0 from the AZ PowerShell Module
Az 8.3.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)
$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