home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo . Installing X-Start for Windows95
- echo .
- echo . Validating - Please note the size of the file displayed below
- echo .
- echo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- dir %winbootdir%\system\user.exe
- echo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- echo .
- choice /c:YN /n ". Does USER.EXE amount to 462,112 bytes? "
- if errorlevel 2 goto DIFF
- if errorlevel 1 goto YES
- :DIFF
- echo .
- echo . !!!ATTENTION!!!
- echo .
- echo . Your installation of Windows95 may not be compatible with the
- echo . X-Start Button. If you continue installing X-Start, Windows may
- echo . behave unpredictably or fail to load at all. If this occurs, you
- echo . may uninstall X-Start by running UNINSTALL from Windows OR simply
- echo . by running UNXSTART.BAT in MS-DOS mode.
- echo .
- choice /c:YN /n ". Do you wish to continue despite this warning? "
- if errorlevel 2 goto NO
- if errorlevel 1 goto YES
- :NO
- echo .
- echo . Installation ABORTED
- echo .
- echo . If you still desire to change the Windows95 Start button with an
- echo . icon of your choice, don't worry! It's easy. Just e-mail me at
- echo . my address below and I'll tell you how to do it step by step :-)
- echo .
- echo . e-mail : tmitchell@easynet.on.ca
- echo . WWW : http://www.easynet.on.ca/~tmitchell/win95updates
- echo .
- choice /c:X /n ". Press X to Return to Windows95"
- goto END
- :YES
- echo .
- echo . Preparing to install the X-Start Button!
- echo .
- echo . Backup of %winbootdir%\SYSTEM\USER.EXE as USER_EXE.BAK
- copy %winbootdir%\system\user.exe %winbootdir%\system\user_exe.bak /y >nul
- echo .
- echo . Copying USER.EX_ to %winbootdir%\SYSTEM\USER.EXE
- copy user.exe %winbootdir%\system\user.exe /y >nul
- echo .
- echo . Installation of X-Start Button Completed! Rebooting Windows95...
- :END
- echo .
-