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

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

https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/AzureAD/Microsoft.Graph_HowToStart.ps1

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