1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/installer/choco/tools/chocolateyUninstall.ps1
Reinhard Pointner 51a777a746 Fix choco build
2018-08-09 16:20:36 +07:00

9 lines
241 B
PowerShell

$app = Get-WmiObject -Query "SELECT * FROM Win32_Product WHERE Name = '@{application.name}'"
if ($app -eq $null) {
echo '@{application.name} is not installed.'
} else {
$app.Uninstall()
echo '@{application.name} has been uninstalled.'
}