Azure PowerShell Module Az 10.1.0 released
Hi All,
Just a few Hours ago, a new Version of the AZ (Azure) PowerShell Module has been released to PowerShell Gallery.
- PowerShell Gallery Az 10.1.0
As always, the ChangeLog is full of updates
Show Installed AZ Module and what’s available in the PowerShell Gallery
Get-InstalledModule AZ
Find-Module AZ
I’ve created a Script to uninstall all AZ.* Modules and install the newest ones. It can be run directly from your PowerShell.
#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-InstalledModule AZ.*
Connect-AzAccount gives a warning unless you specify the Tenant
Connect-AzAccount
Connect-AzAccount -Tenant icewolfch.onmicrosoft.com
List the Azure Static Web Apps and then disconnect from Azure
Get-AzStaticWebApp
Disconnect-AzAccount
Regards
Andres Bohren