mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 11:55:03 -05:00
9 lines
241 B
PowerShell
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.'
|
|
}
|