home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem Versailles Demo Installation - 07/96
-
- if "%1" == "" goto help
-
- if exist %1\versaill\nul goto copy
- md %1\versaill
-
- :copy
- echo Please wait...
- copy *.* %1\versaill
- if not exist %1\versaill\demo_de.hns goto error
-
- %1
- cd %1\versaill
- setsound.exe
-
- echo Installation OK
- echo Type DEMO
-
- goto end
-
- :error
- echo WARNING: Installation failed!
- goto end
-
- :help
- echo Syntax: INSTALL [drive]
- echo Example: INSTALL C:
-
- :end
-