Bulk Uninstaller

  1. Diskpart
    List Disk
    Select Disk
    Clean

    👍
J/K - Though I would generally use Revo, batch type apps I veer away from as limits control; just me.
 
Last edited:
Just playing devil's advocate here, but the OP never mentioned junkware. I can imagine a need to mass-uninstall a handful of legitimate apps...
 
Yes someone installed a whole bunch of weird drivers for a piece of hardware they used at one time. Also sometimes new laptops come with 8 different versions of Office in every language pre-installed and I want to get rid of them all quickly.
 
Powershell. I use PSAppDeployToolkit for ALL app install/uninstall tasks

In PSAppDeploy you can use the applications common name from the uninstall overview
Removing an MSI:
Remove-MSIApplications -Name 'IBM SPSS Statistics'
Remove-MSIApplications -Name 'Microsoft 365 Apps for Enterprise'

- you can easily specify log info, detect errors etc.
 
Powershell. I use PSAppDeployToolkit for ALL app install/uninstall tasks

In PSAppDeploy you can use the applications common name from the uninstall overview
Removing an MSI:
Remove-MSIApplications -Name 'IBM SPSS Statistics'
Remove-MSIApplications -Name 'Microsoft 365 Apps for Enterprise'

- you can easily specify log info, detect errors etc.
Neat. Thank you.
 
Back
Top