home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / a / aseam3_1.zip / INSTAS3.BAT < prev    next >
DOS Batch File  |  1991-04-25  |  1KB  |  41 lines

  1. ECHO OFF
  2. REM ... instas3.bat - ASEAM3.0 installation procedure for 1.4M drives
  3. REM ... %1 is the hard disk drive where ASEAM3.0 is to be installed
  4. REM ... check for missing or invalid drive parameter
  5. IF %1.==. GOTO MISSING
  6. REM ... check for valid drives
  7. IF %1==c GOTO OKAY
  8. IF %1==d GOTO OKAY
  9. IF %1==e GOTO OKAY
  10. IF %1==f GOTO OKAY
  11. IF %1==C GOTO OKAY
  12. IF %1==D GOTO OKAY
  13. IF %1==E GOTO OKAY
  14. IF %1==F GOTO OKAY
  15. ECHO ... The drive parameter is not correct
  16. ECHO ... Re-read the installation instructions and try again!
  17. GOTO END
  18. :MISSING
  19. ECHO ... The drive parameter is missing
  20. ECHO ... Re-read the installation instructions and try again!
  21. GOTO END
  22. :OKAY
  23. REM ... continue with the installation
  24. REM ... make subdirectories for ASEAM3.0
  25. MD %1:\ASEAM3
  26. MD %1:\ASEAM3\DATA
  27. MD %1:\ASEAM3\WEATHER
  28.  
  29. REM ... put self extracting disk file 1 onto hard disk
  30.  
  31. as3disk1.exe %1:\aseam3
  32. as3disk2.exe %1:\aseam3
  33. as3disk3.exe %1:\aseam3
  34. data.exe %1:\aseam3\data
  35. weather.exe %1:\aseam3\weather
  36. solar.exe %1:\aseam3\weather
  37.  
  38.  
  39. :END
  40.  
  41.