- using the PM console, make a copy of your packages.config file
[xml]$packages = gc packages.config
- delete packages.config
- install each package
$packages.packages.package | % { Install-Package -id $($_.id) -Version $($_.version) }
Remember to put the full path to the packages.config and select the correct project from the PM console dropdown !