Advertisement
Old-Lost

Remove old versions of PSGallery modules

Mar 8th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Get-InstalledModule | % {
  2.     Get-InstalledModule $_.Name -AllVersions
  3. } | Group-Object -Property Name | ? Count -gt 1 | % {
  4.     $_.Group | Sort-Object -Property Version | Select-Object -SkipLast 1
  5. } | Uninstall-Module -Verbose
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement