home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Backup / Backup.zip / bmrest40.exe / MAKEDSK.BAT < prev    next >
DOS Batch File  |  1996-10-09  |  2KB  |  82 lines

  1. @Echo off
  2.  
  3. REM This .CMD file creates the two disaster recovery diskettes required
  4. REM required for BackMaster Disaster Recovery under Warp 4.0.
  5. REM
  6.  
  7. REM Display Installation Instructions
  8.  
  9. CLS
  10. ECHO ═════════════════════════════════════
  11. ECHO Welcome to ....
  12. ECHO BackMaster Disaster Recovery Image Creation Utility.
  13. ECHO (c) MSR Development Corporation 1996
  14. ECHO ...
  15. ECHO WARNING !!! - For OS/2 WARP 4.0 ONLY .....
  16. ECHO ...
  17. ECHO Follow the directions on your screen to create 2 dis-
  18. ECHO aster recovery diskettes for usage with BackMaster
  19. ECHO and OS/2 Warp Version 4.0.
  20. ECHO ...
  21. ECHO To QUIT, press Ctrl+C.
  22. ECHO ═════════════════════════════════════
  23. PAUSE
  24. CLS
  25.  
  26. REM Test for loaddskf.exe
  27.  
  28. IF EXIST LOADDSKF.EXE GOTO START
  29. ECHO ═════════════════════════════════════
  30. ECHO This program must be started from the same dirrectory
  31. ECHO as LOADDSKF.EXE and the *.DSK images.
  32. ECHO ═════════════════════════════════════
  33. GOTO EXIT
  34.  
  35. :START
  36.  
  37. REM OK, we are going to create the disks.
  38. ECHO ═════════════════════════════════════
  39. ECHO Label a blank diskette "BackMaster Boot Diskette [01/02]"
  40. ECHO and insert it into Drive A:
  41. PAUSE
  42. ECHO Now creating the
  43. ECHO BackMaster Boot Diskette.
  44. ECHO ═════════════════════════════════════
  45. LOADDSKF BMREST_1.DSK A: /Y/Q/F
  46. IF ERRORLEVEL 1 GOTO BAD
  47. CLS
  48. ECHO Please remove the diskette from Drive A:
  49. Pause
  50.  
  51. CLS
  52. ECHO ═════════════════════════════════════
  53. ECHO Label another blank diskette "BackMaster Utility Diskette [02/02]"
  54. ECHO and insert it into Drive A:
  55. PAUSE
  56. ECHO Now creating the
  57. ECHO BackMaster Utility Diskette.
  58. ECHO ═════════════════════════════════════
  59. LOADDSKF BMREST_2.DSK A: /Y/Q/F
  60. IF ERRORLEVEL 1 GOTO BAD
  61. CLS
  62. ECHO Please remove the diskette from Drive A:
  63. Pause
  64. CLS
  65. ECHO ═════════════════════════════════════
  66. ECHO BackMaster Disaster Recovery Diskettes have been
  67. ECHO created. Refer to the included documentation for
  68. ECHO instructions and additional help for these diskettes.
  69. ECHO ...
  70. ECHO Read !!!! README.1ST before using these diskettes !!!!
  71. ECHO ═════════════════════════════════════
  72. GOTO EXIT
  73.  
  74. :BAD
  75. ECHO ═════════════════════════════════════
  76. ECHO A problem occured while creating the Recovery
  77. ECHO Diskettes.  Refer to the LOADDSKF.DOC file packaged
  78. ECHO with these files for command line option to create
  79. ECHO images manually.
  80. ECHO ═════════════════════════════════════
  81. :EXIT
  82.