Skip to content

Instantly share code, notes, and snippets.

@pmachapman
Created January 8, 2016 01:36
Show Gist options
  • Save pmachapman/e5de3efd5276d8977d23 to your computer and use it in GitHub Desktop.
Save pmachapman/e5de3efd5276d8977d23 to your computer and use it in GitHub Desktop.
Remove zip file searching from Windows XP
@echo off
rem Remove zip file searching from Windows XP
rem By Peter Chapman <peter@conglomo.co.nz>
echo Before continuing be sure to have zip files associated with another program
pause
echo.
echo Unregistering ZIP Folder DLL
regsvr32 /u /s zipfldr.dll
echo Unregistering Cabinet Viewer DLL
regsvr32 /u /s cabview.dll
echo.
echo The computer will restart for the changes to take effect
pause
shutdown -r -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment