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

Eclipse sucks, so use NetBeans!

Tuning ext4 for performance with emphasis on SSD usage

Apple's evaluating a new JVM