I have several programs I want to uninstall from my computer (Windows 7 64bit).
Is there a batch\script that can help me do it? or I need to do it one by one from Control Panel?
If there isn't for Windows 7, is there something like this in XP?
thanks, Dor.
Step 1: Open Absolute Uninstaller (Free edition) and click on Batch Uninstall button that is positioned on the upper left section. Step 2: Select apps those you want to remove. To select apps, just make a tick in the corresponding checkbox. Step 3: Hit the Uninstall Checked Programs button and relax.
The Play Store on Android makes it easy to uninstall a bunch of apps at once to free up space. People used to rely on rooting or other complex methods to uninstall multiple apps at once. Thankfully, it's now possible to do it right from the Play Store on every Android device.
From the main Multi App Uninstaller screen, simply tap each app you want to uninstall one by one (or, if you want to uninstall most of your apps, tap the square icon at the bottom right corner to select all, then tap each app that you want to keep). Tap the trash can icon at the bottom of the screen.
Run the following command to uninstall the program: “product where name= “program name” call uninstall”. Instead of “program name,” type the name of the program. You'll be asked to confirm whether you want to execute the command. Select “Y” to confirm then Enter, or “N” to cancel.
There isn't really an uninstall
command kind of thing in cmd that I know of. You could however query this reg key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
(might also need to check HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall
if you're on a 64-bit machine)
to find the program you want to uninstall. Each one will have an UninstallString
value which will tell you the path to the programs uninstaller file which you can then execute by calling it's full path and filename.
If the uninstaller happens to be an msi you can use
msiexec /uninstall /x
to silently uninstall it. This is about as much as you can do with batch I think.
Hope this helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With