Azure PowerShell Module AZ 13.0.0 released
Hi All,
A few hours ago, a new Version of the AZ (Azure) PowerShell Module has been released to PowerShell Gallery.
- PowerShell Gallery Az 13.0.0
The Release Notes contains a lot of updates
I am using the new PSResourceGet here instead of the PowerShellGet commands.
Show installed Versions and what’s available in PowerShell Gallery
Get-InstalledPSResource AZ -Scope CurrentUser
Find-PSResource AZ
Uninstall the old Modules and install the current Modules
Uninstall-PSResource AZ -Scope CurrentUser -SkipDependencyCheck -ErrorAction SilentlyContinue
Get-InstalledPSResource AZ.* -Scope CurrentUser -ErrorAction SilentlyContinue | Uninstall-PSResource -Scope CurrentUser -SkipDependencyCheck -ErrorAction SilentlyContinue
Install-PSResource AZ -Scope CurrentUser
In the last few weeks i’ve noticed that uninstalling some Modules seems to have Problems. Might be it’s related to the CurrentUser Scope that is redirected to OneDrive. Anyone else seeing this?
I’ve updated the M365PSProfile PowerShell Module and the Uninstall-M365Module Function with the Parameter -FileMode. It will delete the Module Folder of that Module.
Install-PSResource M365PSProfile
Import-Module M365PSProfile
Uninstall-M365Module -Modules AZ -FileMode
Now i can install the newest AZ Module and list all the AZ.* Modules
Install-PSResource AZ -Scope CurrentUser
Get-InstalledPSResource AZ.* -Scope CurrentUser
List the Azure Static Web Apps and then disconnect from Azure
Connect-AzAccount -Tenant icewolfch.onmicrosoft.com
Get-AzStaticWebApp
Disconnect-AzAccount
Or you can simply use my M365PSProfile Module - find the Documentation here: https://github.com/fabrisodotps1/M365PSProfile/
Install-PSResource -Name M365PSProfile
Install-M365Module -Modules AZ
Regards
Andres Bohren