home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- REM %1=DRIVE
- REM -----------------------------
- ECHO
- ECHO ╔═════════════════════════════════════════════════════╗
- ECHO ║ ║
- ECHO ║ PC Graphics Unleashed ║
- ECHO ║ ║
- ECHO ║ CD-ROM Installation Program ║
- ECHO ║ ║
- ECHO ╚═════════════════════════════════════════════════════╝
- ECHO
- ECHO
- ECHO ─────────────────────────────────────────────────────────────
- ECHO The files for Chapter 20 will be installed to your %1
- ECHO hard drive. You need at least 1 megabyte of free space.
- ECHO.
- ECHO.
- ECHO If this is NOT what you want to do, press the Ctrl + C
- ECHO keys to stop this batch program.
- ECHO ─────────────────────────────────────────────────────────────
- ECHO
- ECHO
- ECHO
- PAUSE Paused... press any key to continue the installation
- CLS
- ECHO
- ECHO ┌───────────────────────────────────────────────────────────────────────┐
- ECHO │ The software will now be installed to your %1 hard drive. │
- ECHO │ You'll see a message telling you when the installation is finished. │
- ECHO └───────────────────────────────────────────────────────────────────────┘
- IF EXIST C:\PCGU\nul GOTO COPYING
- MD C:\PCGU
- :COPYING
- MD C:\PCGU\CH20
- MD C:\PCGU\CH20\EXE
- MD C:\PCGU\CH20\SOURCE
- XCOPY \CH20\EXE %1\PCGU\CH20\EXE\ /S /E
- XCOPY \CH20\SOURCE %1\PCGU\CH20\SOURCE\ /S /E
- COPY \CH20\README.TXT %1\PCGU\CH20
- CLS
- ECHO
- ECHO
- ECHO ═════════════════════════════════════════════════════════════════════
- ECHO.
- ECHO The installation of the Chapter 20 software is complete.
- ECHO You'll find the files in the %1\PCGU\CH20 directory.
- ECHO.
- ECHO The CT scan and MRI scan data files have not been installed
- ECHO to your hard drive. You'll find them in the \CH20\DATA directory.
- ECHO.
- ECHO ═════════════════════════════════════════════════════════════════════
- ECHO
- ECHO
- pause
- cls
-