Skip to content

Instantly share code, notes, and snippets.

@joerodgers
Created September 26, 2025 16:11
Show Gist options
  • Select an option

  • Save joerodgers/3ec6fd445e51587c9671b82d749174d2 to your computer and use it in GitHub Desktop.

Select an option

Save joerodgers/3ec6fd445e51587c9671b82d749174d2 to your computer and use it in GitHub Desktop.
Uninstalls all versions of the Az modules
Get-InstalledModule -Name Az.* | ForEach-Object -Process { Get-InstalledModule -Name $_.Name -AllVersions | Uninstall-Module -Force -Verbose }
Get-InstalledModule -Name Az -AllVersions | Uninstall-Module -Force -Verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment