home *** CD-ROM | disk | FTP | other *** search
/ PC Action 1997 July / CITE.ISO / demos / versa / install.bat < prev    next >
Encoding:
DOS Batch File  |  1996-09-01  |  453 b   |  32 lines

  1. @echo off
  2. rem Versailles Demo Installation - 07/96
  3.  
  4. if "%1" == "" goto help
  5.  
  6. if exist %1\versaill\nul goto copy
  7. md %1\versaill
  8.  
  9. :copy
  10. echo Please wait...
  11. copy *.* %1\versaill
  12. if not exist %1\versaill\demo_de.hns goto error
  13.  
  14. %1
  15. cd %1\versaill
  16. setsound.exe
  17.  
  18. echo Installation OK
  19. echo Type DEMO
  20.  
  21. goto end
  22.  
  23. :error
  24. echo WARNING: Installation failed!
  25. goto end
  26.  
  27. :help
  28. echo Syntax:  INSTALL [drive]
  29. echo Example: INSTALL C:
  30.  
  31. :end
  32.