home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo KKND Demo Installer
- echo -------------------
- echo.
- echo The Mission
- echo -----------
- echo This demo features a single mission for the freaky Evolved. If you're
- echo hungry for more then download the Survivor mission for a real challenge.
- echo.
- echo UniVBE
- echo ------
- echo If you find that KKND runs slowly on your machine, you may need to use
- echo a Vesa driver. We have included the shareware version of UniVBE 5.3 in
- echo this download for you to install.
- echo.
- echo.
- pause
- cls
-
- if "%1"=="" goto install_instructions ; No Option. goto normal instructions
-
- :destination_instructions
- @echo off
- echo Installation
- echo ------------
- echo.
- echo This batch file will install the KKND demo into the directory:
- echo %1\
- echo.
- echo It will then run the sound setup program.
- echo.
- choice /c:yn Do you wish to continue
- if errorlevel 2 goto abort_exit
- goto install_to_directory
-
-
- :install_instructions
- @echo off
- echo Installation
- echo ------------
- echo.
- echo This batch file will install the KKND demo into the current directory and
- echo then run the sound setup program.
- echo.
- echo If you wish to install into a different directory, then type INSTALL C:\KKND
- echo at the command prompt, where C:\KKND is the destination directory.
- echo.
- choice /c:yn Do you wish to continue
- if errorlevel 2 goto abort_exit
- goto install
-
- :install
- pkunzip dont_run -d
- setsound
- goto exit
-
- :install_to_directory
- pkunzip dont_run -d %1
- cd %1
- setsound
- echo The KKND Evolved demo has been successfully installed. Good Luck!
- goto exit
-
- :abort_exit
- echo.
- echo Installation aborted.
- goto exit
-
- :exit