Last active
June 7, 2019 10:47
-
-
Save manualbashing/8077867b9a079ad3370b to your computer and use it in GitHub Desktop.
Use WMI to uninstall programs and features on windows
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
gwmi Win32_Product -Filter 'Name like "%vCenter%"' | % { $_.uninstall() } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment