Last active
July 19, 2019 01:32
-
-
Save PlagueHO/659e651115d06ec3b64688e58ded01ef to your computer and use it in GitHub Desktop.
Update all Azure PowerShell modules safely
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Module -Name azure* -ListAvailable | | |
Where-Object -Property Name -ne 'AzureRM' | | |
ForEach-Object { | |
$currentVersion = [Version] $_.Version | |
$newVersion = [Version] (Find-Module -Name $_.Name).Version | |
if ($newVersion -gt $currentVersion) { | |
Write-Host -Object "Updating $_ Module from $currentVersion to $newVersion" | |
Update-Module -Name $_.Name -RequiredVersion $newVersion -Force | |
Uninstall-Module -Name $_.Name -RequiredVersion $currentVersion -Force | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment