home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / MFBGEN.ZIP / MAKECHK.BRF next >
Text File  |  1989-05-02  |  1KB  |  43 lines

  1. echo off
  2. echo This procedure constructs a file on the C:\ directory called
  3. echo SYSCHK. SYSCHK is constructed so as to contain an image of the DOS
  4. echo boot record and an image of the OS/2 boot record. If you have
  5. echo installed DOS and OS/2 in one partition, and if you alter the boot
  6. echo record on fixed disk so as to load and execute SYSCHK (see
  7. echo instructions), then booting of your system with Ctrl-Alt-Del will
  8. echo result in a prompt (by SYSCHK) as to which system is to be booted.
  9. echo SYSCHK will then load and execute the appropriate boot record (from
  10. echo the image contained within SYSCHK), thus booting the desired
  11. echo system.
  12. echo 
  13. echo Before executing this procedure, you should have done the SAVEBOOT
  14. echo command on both the xxBOOT - DOS and xxBOOT - OS2 diskettes (xx=MF
  15. echo or xx=PS), so that the boot record images for both systems are
  16. echo available
  17. echo 
  18. pause
  19. a:
  20. cd \
  21. cd c:\
  22. echo copy a:syschk.bin c:syschk.@@1
  23. copy a:syschk.bin c:syschk.@@1
  24. echo 
  25. echo Place the PSBOOT - DOS (or MFBOOT - DOS) disk in drive A:
  26. echo 
  27. pause
  28. echo copy /b c:syschk.@@1+a:bootrec c:syschk.@@2
  29. copy /b c:syschk.@@1+a:bootrec c:syschk.@@2
  30. echo erase c:syschk.@@1
  31. erase c:syschk.@@1
  32. echo 
  33. echo Place the PSBOOT - OS2 (or MFBOOT - OS2) disk in drive A:
  34. echo 
  35. pause
  36. echo copy /b c:syschk.@@2+a:bootrec c:syschk
  37. copy /b c:syschk.@@2+a:bootrec c:syschk
  38. echo erase c:syschk.@@2
  39. erase c:syschk.@@2
  40. echo 
  41. echo Procedure completed.
  42. echo 
  43.