1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-10 14:31:04 -04:00
filebot/installer/chocolatey/tools/chocolateyUninstall.ps1

9 lines
220 B
PowerShell
Raw Normal View History

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