mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-10 22:40:00 -04:00
10 lines
215 B
PowerShell
10 lines
215 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.'
|
||
|
}
|