Skip to content

Instantly share code, notes, and snippets.

@MikeLarned
Created August 31, 2011 16:25
Show Gist options
  • Save MikeLarned/1183946 to your computer and use it in GitHub Desktop.
Save MikeLarned/1183946 to your computer and use it in GitHub Desktop.
Package Manager Console Update All Packages
Get-Package -Updates | ForEach-Object{ $id = $_.Id; Get-Project -All | ForEach-Object{ Update-Package -Id $id -ProjectName $_.ProjectName } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment