Last active
March 28, 2017 12:31
-
-
Save johannesegger/dfc62c3d304e7659675796c90d8467b4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Reinstall all packages | |
Get-Package | Select -Unique Id | % { Update-Package -Reinstall $_.Id } | |
# Reinstall packages for a specific project | |
Get-Package | Where { $_.ProjectName -eq "ProjectA" } | % { Update-Package -Reinstall $_.Id -Project $_.ProjectName } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment