home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the DOOM Gurus
/
TricksOfTheDoomGurus.iso
/
shell
/
util.bat
< prev
Wrap
DOS Batch File
|
1995-04-17
|
1KB
|
32 lines
@ECHO OFF
CLS
ECHO.
ECHO You have chosen to install the %1 files to %2\DOOMCD\%1.
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.
PAUSE Paused... press any key to continue the installation
CLS
ECHO.
ECHO ┌───────────────────────────────────────────────────────────────────────┐
ECHO │ The software will now be installed to your hard drive. │
ECHO │ You'll see a message telling you when the installation is finished. │
ECHO └───────────────────────────────────────────────────────────────────────┘
xcopy /S \UTILS\%1\*.* %2\DOOMCD\%1\*.*
rem xcopy /S \EDITORS\%1\*.* %2\DOOMCD\%1\*.*
CLS
ECHO
ECHO.
ECHO ╔══════════════════════════════════════════════════════════════════╗
ECHO ║ The installation is complete! ║
ECHO ║ ║
ECHO ║ You will now be returned to the DOOMCD installation program. ║
ECHO ╚══════════════════════════════════════════════════════════════════╝
ECHO.
ECHO.
PAUSE