gwendes Posted October 24, 2013 Posted October 24, 2013 Scratch has been manually installed across the site and I've been asked to remove it. Running the .msi with /uninstall has no affect. Suggestions for the best bet for removing it cleanly?
tiptronic13 Posted November 6, 2013 Posted November 6, 2013 here is my uninstall bat script, work successfully for me, just tested. @echo off rem removeScratch IF EXIST "C:\Program Files\Scratch\Scratch.exe" ( MsiExec.exe /X{2D64DBC2-99C8-4481-9D2A-1F8D4A245E95} /qr ) ELSE ( echo "No Scratch Program Here" ) IF EXIST "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Scratch.lnk" ( del "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Scratch.lnk" /F ) ELSE ( echo "No Scratch Program" ) exit
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now