home *** CD-ROM | disk | FTP | other *** search
/ Bill Gates - Unplugged - Comdex 1993 / CD_ROM.ISO / ole / mspub / pubdemo / install / dosinstl.bat < prev    next >
DOS Batch File  |  1993-06-17  |  4KB  |  146 lines

  1. echo off
  2. cls
  3. if  "%1"=="" goto TRYAGAIN
  4. if  "%2"=="" goto TRYAGAIN
  5. if  "%2"=="C" goto TRYAGAIN
  6. if  "%1"=="A" goto TRYAGAIN
  7. if  "%1"=="B" goto TRYAGAIN
  8. if  "%2"=="c" goto TRYAGAIN
  9. if  "%1"=="a" goto TRYAGAIN
  10. if  "%1"=="b" goto TRYAGAIN
  11. echo.
  12. echo.
  13. echo.
  14. echo                              ************
  15. echo                            Microsoft Presents
  16. echo                       Microsoft Publisher 2.0 Demo
  17. echo.
  18. echo                            DOS INSTALLATION
  19. echo.
  20. echo.                     (for Windows, use install.exe)
  21. echo.
  22. echo.
  23. echo                This installation process requires 4.5 Mb
  24. echo                of free disk space on your hard drive.
  25. echo                To Run the demo, 490 KB of available RAM
  26. echo                is required. It takes from 2 to 7 minutes
  27. echo                to automatically install, depending on your
  28. echo                system.
  29. echo.
  30. echo                        Source Drive:      [%1]
  31. echo                        Destination Drive: [%2]
  32. echo.
  33. echo                It will make a directory called %2\PUBDEMO.
  34. echo.       
  35. echo                If you wish to quit at this time,
  36. echo                please press [Ctrl] [C].
  37. echo.
  38. pause
  39.  
  40.  
  41. if "%1"=="A:" goto AINSTALL
  42. if "%1"=="B:" goto BINSTALL
  43. if "%1"=="a:" goto AINSTALL
  44. if "%1"=="b:" goto BINSTALL
  45.  
  46. :AINSTALL
  47. a:free %2 4500000
  48. if errorlevel 1 goto NOTFREE
  49. a:free %2 5950000
  50. if errorlevel 1 goto FROMA
  51.  
  52. md %2\pubdemo >nul
  53. echo.
  54. echo                Now installing the demo.  Please wait...
  55. copy a:pubarj.exe %2\pubdemo >nul
  56. %2\pubdemo\pubarj.exe -e -y %2\pubdemo\
  57. %2\ >nul
  58. cd %2\pubdemo >nul
  59. del %2\pubdemo\pubarj.exe >nul
  60. copy a:pubdemo.ico %2\pubdemo >nul
  61. pubdemo
  62. goto GOODBYE
  63.  
  64. :FROMA
  65. md %2\pubdemo >nul
  66. echo.
  67. echo       Now installing the demo.  Please wait...
  68. a:pubarj.exe -e -y %2\pubdemo\ >nul
  69. %2\ >nul
  70. cd %2\pubdemo >nul
  71. copy a:pubdemo.ico %2\pubdemo >nul
  72. pubdemo
  73. goto GOODBYE
  74.  
  75. :BINSTALL
  76. b:free %2 4500000
  77. if errorlevel 1 goto NOTFREE
  78. b:free %2 5950000
  79. if errorlevel 1 goto FROMB
  80.  
  81. md %2\pubdemo >nul
  82. echo.
  83. echo              Now installing the demo.  Please wait...
  84. copy b:pubarj.exe %2\pubdemo >nul
  85. %2\pubdemo\pubarj.exe -e -y %2\pubdemo\ >nul
  86. %2\ >nul
  87. cd %2\pubdemo >nul
  88. del %2\pubdemo\pubarj.exe >nul
  89. copy b:pubdemo.ico %2\pubdemo >nul
  90. pubdemo
  91. goto GOODBYE
  92.  
  93. :FROMB
  94. md %2\pubdemo >nul
  95. echo.
  96. echo              Now installing the demo.  One moment please...
  97. b:pubarj.exe -e -y %2\pubdemo\ >nul
  98. %2\ >nul
  99. cd %2\pubdemo >nul
  100. copy b:pubdemo.ico %2\pubdemo >nul
  101. pubdemo
  102. goto GOODBYE
  103.  
  104. :TRYAGAIN
  105. cls
  106. echo                           *******************
  107. echo         To install the demo, please type:
  108. echo              [source drive]install [source drive] [destination drive]
  109. echo         For example:
  110. echo               a:install a: c:
  111. echo            (remember to put the colons after the drive letters)
  112. echo.
  113. pause
  114. goto EXIT
  115.  
  116. :NOTFREE
  117. cls
  118. echo                    *******************
  119. echo    Your hard disk [%2] doesn't contain enough free space to 
  120. echo    install the Publisher Demo.  You need at least 4.5 megabytes
  121. echo    (4500 kilobytes) of free space to install the demo.
  122. echo                           *****
  123. echo    Please remove some unnecessary files and try again!
  124. echo.
  125. pause
  126. goto EXIT
  127.  
  128. :GOODBYE
  129. echo                                  *******
  130. echo                 Thank you for watching the Publisher 2.0 Demo.
  131. echo.
  132. echo                       Type "pubdemo" in this directory
  133. echo                            to run the demo again.
  134. echo                                  *******
  135. echo.
  136. pause
  137. goto EXIT
  138.  
  139. :EXIT
  140. rem        Demo produced by:
  141. rem               Graphic Media, Inc
  142. rem              411 SW 2nd Ave.
  143. rem               Portland, OR  97204
  144. rem               503-223-2262
  145.  
  146.