home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazin 1997 July/August / CD07_08.ISO / makeboot / makeboot.bat < prev    next >
DOS Batch File  |  1994-05-16  |  573b  |  18 lines

  1. @echo off
  2. echo This program will make a boot disk. By inserting this disk before you
  3. echo switch on or reset your computer, MSDOS will start up without loading
  4. echo in your device drivers and TSRs, so you should have more memory
  5. echo available.
  6. echo.
  7. echo First, insert a disk in drive A: This disk will be formatted.
  8. format a: /v:BootDisk /s
  9. if errorlevel 1 goto error
  10. copy config.sys a:
  11. pickdrv >>a:config.sys c:\config.sys
  12. pickdrv >a:cd.bat c:\autoexec.bat
  13. copy a:cd.bat+autoexec.bat a:autoexec.bat
  14. goto end
  15. :error
  16. echo The boot disk was not made.
  17. :end
  18.