home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
-
- :START
- driveok -d C: 720000
- if errorlevel 2 goto BADDRIVE
- if errorlevel 1 goto BADPARAM
-
- @echo off
-
- echo Do you want to . . .
- echo
- echo 1. install the demo on hard drive C:\
- echo 2. play the demo from diskette
- echo
- driveok -k 12 Choose 1 or 2 . . .
-
- echo
- echo
-
- if errorlevel 2 goto NO
- if errorlevel 1 goto BADPARAM
-
- driveok -p C:\123demo
- if errorlevel 2 goto NEWDIR
- if errorlevel 1 goto BADPARAM
- if errorlevel 0 goto COPYFILES
-
- :NEWDIR
- MD c:\123demo
- goto COPYFILES
-
- :BADPARAM
- Echo Bad command in batch file.
- goto endxx
-
- :NO
- demo
-
- :BADDRIVE
- echo **************************************************
- echo Drive C: is not available
- echo OR
- echo There is not enough memory free!
- echo **************************************************
- echo Demo requires at least 720K of hard disk space
- echo for complete installation.
- echo **************************************************
- goto ENDxx
-
- :COPYFILES
- echo
- echo Installing demo now. Please wait.
- copy *.* c:\123demo >nul
- echo
- echo
- c:
- cd\123demo
- driveok -k yn Do you want to view the demo now (Y/N)? . . .
- echo
-
- if errorlevel 2 goto END
- if errorlevel 1 goto BADPARAM
-
- demo
-
- :END
- echo
- echo
- echo When you want to view the demo type: demo
- echo
- echo
-
- :ENDxx