home *** CD-ROM | disk | FTP | other *** search
/ Magicom Multimedia Collection: 40 Hot Games / MAGICOM.bin / install / bootdisk / bootdisk.bat < prev    next >
Encoding:
DOS Batch File  |  1996-01-25  |  3.8 KB  |  67 lines

  1. cls
  2. @echo off
  3. echo  *************************************************************************
  4. echo  *                                                                       *
  5. echo  *                              Boot Disk                                *
  6. echo  *                              ---------                                *
  7. echo  *                                                                       *
  8. echo  *  Making a boot disk is easy and very safe, since all of the commands  *
  9. echo  *  are loaded  on a separate  disk and  none of the files on your hard  *     
  10. echo  *  drive will  be effected. You will need a blank disk, or a disk with  *
  11. echo  *  no files that you  want to keep, and  you will  need to  insert the  * 
  12. echo  *  disk in drive "A" .                                                  *
  13. echo  *                                                                       *
  14. echo  *  This  utility will  create  a  boot disk  so that you can start DOS  *
  15. echo  *  programs without  any system  overhead taking  up  space in memory.  *
  16. echo  *  It  will automatically start  the menu  program, and will load your  *
  17. echo  *  mouse  if  the commands  are  in  a  directory called MOUSE.  Empty  *
  18. echo  *  CONFIG.SYS  and  AUTOEXEC.BAT  files  will be copied on to the disk  *
  19. echo  *  with notes  on  where  to  include  the commands to load your sound  *
  20. echo  *  card if you want to include them.  This  utility assumes  your hard  *
  21. echo  *  drive is drive "C" and your boot floppy drive is drive "A". If your  *
  22. echo  *  system  is  different,  you will have to change the settings on the  *
  23. echo  *  boot disk.                                                           *
  24. echo  *                                                                       *
  25. echo  *************************************************************************
  26. pause
  27. cls
  28. echo  *************************************************************************
  29. echo  *                                                                       *
  30. echo  *  Just follow the directions.  You  only  need  to  let the boot disk  * 
  31. echo  *  utility format 1 disk.  Leave  the  bootdisk in the "A" drive until  * 
  32. echo  *  the utility has finished.                                            *
  33. echo  *                                                                       *
  34. echo  *************************************************************************
  35. pause
  36. cls 
  37. Echo   Continue Making Boot Disk?                                           
  38. CHOICE /C:YN 
  39. IF ERRORLEVEL 2 GOTO End
  40. IF ERRORLEVEL 1 GOTO Make_Boot
  41.  
  42. :Make_Boot
  43. cls
  44. format a: /s 
  45. copy config.sys a:\
  46. copy autoexec.bat a:\
  47. cls
  48. echo  **************************************************************************
  49. echo  *                                                                        *
  50. echo  *                           Boot Disk Made!                              *
  51. echo  *                           _______________                              *
  52. echo  *                                                                        *
  53. echo  *   Label the boot disk and keep  it  in a safe place.  You'll find it   *    
  54. echo  *   helpful!  To  use  the  boot  disk, insert it in the "A" drive and   *
  55. echo  *   reset the  computer (or turn if off, then on).  Your computer will   *
  56. echo  *   read  the start  up commands on the disk, and start the menu.  You   *
  57. echo  *   can change  the start  up commands by editing the AUTOEXEC.BAT and   *
  58. echo  *   CONFIG.SYS  files on  the boot  disk.  Some notes  are provided to   *
  59. echo  *   help.                                                                *
  60. echo  *                                                                        *
  61. echo  **************************************************************************
  62. pause
  63. :End
  64. cls
  65. cd \
  66.  
  67.