home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 2 #3 / The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso / lot10020 / install.bak < prev    next >
Text File  |  1989-04-25  |  2KB  |  75 lines

  1. echo off
  2.  
  3. rem
  4. rem
  5. rem    Batch file to install MSDEMO
  6. rem
  7. rem
  8.  
  9. if he%1lp==help goto help
  10.  
  11. mkdir %1\msdemo
  12.  
  13. cls
  14.  
  15. echo Please wait for files to be copied. . . 
  16.  
  17.  
  18. cd \msdemo
  19.  
  20. copy *.* %1\msdemo
  21.  
  22. cd \
  23.  
  24. if errorlevel 1 goto error
  25.  
  26. cls
  27.  
  28.  
  29. echo Installation complete.
  30. echo Type MSDEMO to view the demonstration.
  31.  
  32.  
  33. %1
  34. cd %1\msdemo
  35.  
  36. goto done
  37.  
  38. :error
  39.  
  40.  
  41. echo ERROR:  Not all of the files were successfully copied.
  42.  
  43. echo Please note that you need approximatey 1.0 MB free to install the
  44. echo demo.  Be sure to include a colon after the specified drive.
  45.  
  46.  
  47.  
  48.  
  49. goto done
  50.  
  51. :help
  52. echo    ╔════════════════════════════════════════════════════════════════════╗
  53. echo    ║                                                                    ║
  54. echo    ║                Hard Disk Installation Program                      ║
  55. echo    ║                                                                    ║
  56. echo    ╟────────────────────────────────────────────────────────────────────╢
  57. echo    ║                                                                    ║
  58. echo    ║   To run the Manuscript autodemo from your hard disk,              ║
  59. echo    ║                                                                    ║
  60. echo    ║   At the DOS prompt, type:                                         ║
  61. echo    ║                                                                    ║
  62. echo    ║             install [drive:]                                       ║
  63. echo    ║                                                                    ║
  64. echo    ║   For example,                                                     ║
  65. echo    ║                                                                    ║
  66. echo    ║              install c:                                            ║
  67. echo    ║                                                                    ║
  68. echo    ║   will install the autodemo on drive c:                            ║
  69. echo    ║                                                                    ║
  70. echo    ║   Please note you need about 1.0 MB of free disk space.            ║
  71. echo    ║                                                                    ║
  72. echo    ╚════════════════════════════════════════════════════════════════════╝
  73.  
  74. :done
  75.