* properly support 'cuninst filebot'
This commit is contained in:
parent
9c41231af1
commit
ec73e35dc1
|
@ -0,0 +1,9 @@
|
||||||
|
$app = Get-WmiObject -Query "SELECT * FROM Win32_Product WHERE Name = 'FileBot'"
|
||||||
|
echo $app
|
||||||
|
|
||||||
|
if ($app -eq $null) {
|
||||||
|
echo 'FileBot is not installed.'
|
||||||
|
} else {
|
||||||
|
$app.Uninstall()
|
||||||
|
echo 'FileBot has been uninstalled.'
|
||||||
|
}
|
Loading…
Reference in New Issue