Uninstall applications via PowerShell directives/cmdlets
Using PowerShell cmdlets you can remove software in Windows that were installed via MSI.
$app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -match "AppName" } $app.Uninstall()
...will uninstall software that have "AppName" in its name.
Comments
Post a Comment