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

Popular posts from this blog

Tuning ext4 for performance with emphasis on SSD usage

NetBeans 6.1: Working with Google´s Android SDK, Groovy and Grails