1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/installer/chocolatey/tools/chocolateyUninstall.ps1

9 lines
220 B
PowerShell
Raw Normal View History

2016-11-04 16:46:24 -04:00
$app = Get-WmiObject -Query "SELECT * FROM Win32_Product WHERE Name = '@{application.name}'"
2013-12-26 02:36:48 -05:00
if ($app -eq $null) {
echo 'FileBot is not installed.'
} else {
$app.Uninstall()
echo 'FileBot has been uninstalled.'
}