home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo .
- echo . Uninstalling X-Start Button for Windows95
- echo .
- choice /c:YN /n ". Is it your sincere desire to remove the X-Start Button? "
- if errorlevel 2 goto NO
- if errorlevel 1 goto YES
- :NO
- echo .
- echo . I knew the truth was out there. Rebooting Windows...
- goto END
- :YES
- echo .
- echo . Preparing to remove the X-Start Button. I'll deny everything.
- echo .
- echo . Restoring USER_EXE.BAK to %winbootdir%\SYSTEM\USER.EXE
- copy %winbootdir%\system\user_exe.bak %winbootdir%\system\user.exe /y >nul
- echo .
- echo . Removing USER_EXE.BAK
- del %winbootdir%\system\user_exe.bak >nul
- echo .
- choice /c:X /n ". Press X to Return to Windows95"
- goto END
- :END
- echo .
-