home *** CD-ROM | disk | FTP | other *** search
/ AMOS PD CD / amospdcd.iso / 251-275 / apd257 / examples / make_bootable2.script < prev    next >
Text File  |  1991-07-03  |  2KB  |  201 lines

  1. pen "3"
  2. cecho "A MegaDOS Example File"
  3. echo " "
  4. cecho "2 Drive Make Bootable"
  5. echo " "
  6. cecho "----------------------"
  7. echo " "
  8. pen "1"
  9. wait "100"
  10. cecho "Please Insert a COPY of Workbench1.3 in ANY drive...."
  11. cecho "and Press A Key"
  12. Waitkey
  13. waitkey
  14. cd "Workbench1.3:"
  15. echo " "
  16. cecho "Please Insert a Disk called Empty in ANY drive...."
  17. cecho "and Press A Key"
  18. waitkey
  19. echo " "
  20. pen "3"
  21. cecho "Making Destination directories...."
  22. pen "1"
  23. echo " "
  24. makedir "Empty:C"
  25. makedir "Empty:S"
  26. makedir "Empty:L"
  27. makedir "Empty:Devs"
  28. makedir "Empty:Libs"
  29. echo " "
  30. pen "3"
  31. cecho "Copying some files into the `C' Directory...."
  32. pen "1"
  33. echo " "
  34. copy "c/LoadWB" to "Empty:c/LoadWB"
  35. copy "c/EndCLI" to "Empty:c/EndCLI"
  36. copy "c/Echo" to "Empty:c/Echo"
  37. copy "Utilities/more" to "Empty:c/More"
  38. echo " "
  39. pen "3"
  40. cecho "Copying some files into the `L' Directory...."
  41. pen "1"
  42. echo " "
  43. copy "l/Disk-Validator" to "Empty:l/Disk-Validator"
  44. copy "l/Ram-Handler" to "Empty:l/Ram-Handler"
  45. copy "l/Speak-Handler" to "Empty:l/Speak-handler"
  46. echo " "
  47. pen "3"
  48. cecho "Copying some files into the `Libs' Directory...."
  49. pen "1"
  50. echo " "
  51. copy "libs/Icon.Library" to "Empty:Libs/icon.Library"
  52. copy "Libs/Info.Library" to "Empty:Libs/Info.Library"
  53. copy "Libs/Translator.Library" to "Empty:Libs/Translator.Library"
  54. echo " "
  55. pen "3"
  56. cecho "Copying some files into the `Devs' Directory...."
  57. pen "1"
  58. echo " "
  59. copy "Devs/System-Configuration" to "Empty:Devs/System-Configuration"
  60. copy "Devs/Printer.Device" to "Empty:Devs/Printer.Device"
  61. copy "Devs/Narrator.Device" to "Empty:Devs/Narrator.Device"
  62. echo " "
  63. pen "3"
  64. cecho "Creating Startup-Sequence......."
  65. pen "1"
  66. echo " "
  67. copy "Megabase:Examples/Startup-Sequence" to "Empty:s/Startup-sequence"
  68. pen "3"
  69. echo " "
  70. cecho "Now all you have to do is install it using Workbench!"
  71. cecho "-----------------------------------------------------"
  72. pen "1"
  73. cecho "And once it's Loaded........ RENAME It!"
  74. echo " "
  75. wait "100"
  76. end
  77. echo " "
  78. pen "3"
  79. wait "200"
  80. echo "goodbye!  Press Any Key!"
  81. waitkey
  82. end
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.