Created
April 2, 2016 17:18
-
-
Save kapb14/7d8e3bbba754917191ef7f7c945149bc to your computer and use it in GitHub Desktop.
Choose a package from 'Out-GridView' and Uninstall it.
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
| <# | |
| .SYNOPSIS | |
| Choose a package from 'Out-GridView' and Uninstall it. | |
| #> | |
| $program = Get-Package | Out-GridView -OutputMode Single -Title "Choose Package to Uninstall" | |
| $program | Select Name,Version,Summary,Status | |
| $program | Uninstall-Package -Force -Verbose | |
| <# | |
| gcm -Module PackageManagement | |
| man Uninstall-Package | |
| #> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment