Skip to content

Instantly share code, notes, and snippets.

@kapb14
Created April 2, 2016 17:10
Show Gist options
  • Select an option

  • Save kapb14/829d37a27a68b600193ccda791f52ca3 to your computer and use it in GitHub Desktop.

Select an option

Save kapb14/829d37a27a68b600193ccda791f52ca3 to your computer and use it in GitHub Desktop.
Find and Install package via Powershell (v5)
$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