home *** CD-ROM | disk | FTP | other *** search
/ Crazy Collection 1 / CC-01.iso / GAMES_1 / SOEMPIRE / DATA.A00 / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-05-26  |  564 b   |  24 lines

  1. @ECHO OFF
  2. ECHO Son of the Empire harddisk install program.
  3. IF "%1"=="" GOTO DEFAULT
  4. ECHO Hold down CTRL and press C to abort.
  5. ECHO Installing Son of the Empire to %1
  6. PAUSE
  7. MD %1
  8. MD %1\PACS
  9. MD %1\ROOMS
  10. MD %1\SPIT
  11. COPY *.* %1
  12. COPY \PACS %1\PACS
  13. COPY \ROOMS %1\ROOMS
  14. COPY \SPIT %1\SPIT
  15. DEL %1\I*.B*
  16. ECHO Install complete!
  17. ECHO Please go to directory %1 and type 'EMPIRE'
  18. GOTO EXIT
  19. :DEFAULT
  20. ECHO Please type INSTALL DRIVE:\PATHNAME.
  21. ECHO For example INSTALL C:\EMPIRE will install the game
  22. ECHO to an EMPIRE directory on drive C:.
  23. :EXIT
  24. @ECHO ON