mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
10 lines
218 B
PowerShell
10 lines
218 B
PowerShell
$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.'
|
|
}
|