Created
April 2, 2016 17:10
-
-
Save kapb14/829d37a27a68b600193ccda791f52ca3 to your computer and use it in GitHub Desktop.
Find and Install package via Powershell (v5)
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
| $AllPackages = Find-Package | |
| $pkg = $AllPackages | Out-GridView -OutputMode Single -Title "Choose a package" | |
| $pkg | Select Name,Summary,Version,Links,Dependencies | |
| $pkg | Install-Package -Force -Confirm:$false -Verbose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment