home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 1999 June / PCW0699.ISO / sharewar / tricks / multi.exe / BOOT.BAT next >
Encoding:
DOS Batch File  |  1999-03-31  |  831 b   |  32 lines

  1. @echo off
  2. echo *** (1) installiertes System
  3. echo *** (2) WFW 3.11    ***
  4. echo *** (3) Windows 95  ***
  5. echo *** (4) Windows 95B ***
  6. echo *** (5) Windows 98  ***
  7. choice /c12345 /n Bitte wählen
  8. if errorlevel 5 set V=5
  9. if errorlevel 4 if not errorlevel 5 set V=4
  10. if errorlevel 3 if not errorlevel 4 set V=3
  11. if errorlevel 2 if not errorlevel 3 set V=2
  12. if errorlevel 1 if not errorlevel 2 goto ende
  13.  
  14. attrib -r -h -s c:\.
  15. copy /v/y c:\tools\config\config.%v% c:\*.sys
  16. copy /v/y c:\tools\config\io.%v% c:\*.sys
  17. copy /v/y c:\tools\config\msdos.%v% c:\*.sys
  18. copy /v/y c:\tools\config\autoexec.%v% c:\*.bat
  19. copy /v/y c:\tools\config\command.%v% c:\*.com
  20.  
  21. echo WCS:100 2 0 1 > boot.tmp
  22. echo q >> boot.tmp
  23. echo. >> boot.tmp
  24. debug c:\tools\config\bootsect.%v% < boot.tmp
  25. del boot.tmp
  26.  
  27. echo g=ffff:0|debug
  28. :ende
  29.  
  30.  
  31.  
  32.