Upload files to "Fun\Random"
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
Get-WmiObject -Class Win32_Product | Select-Object -Property Name | Out-GridView
|
||||
|
||||
[void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
|
||||
$Program = [Microsoft.VisualBasic.Interaction]::InputBox('Please enter the name of the program you wish to uninstall', 'Uninstall Program')
|
||||
|
||||
$MyApp = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -eq "$Program" }
|
||||
|
||||
$MyApp.Uninstall()
|
||||
Reference in New Issue
Block a user