home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Season's Greetings & Games Unlimited
/
UGOLD_cd2.iso
/
craps
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1994-08-20
|
628b
|
28 lines
echo off
if "%1" == "" goto parerror
if "%2" == "" goto parerror
if "%1" == "%2" goto parerror
echo This batch file will create a directory on you hard drive called
echo CRAPS and will copy the files from the floppy to that directory.
echo Press CTRL-BREAK now to abort the batch file.
pause
cls
echo Making directory...
%1
md %2\craps
cd %2\craps
echo Coping files...
copy %1*.* %2
echo Finished.
goto quit
:parerror
echo USAGE: install [source drive] [destination drive]
echo example: install a: c:
echo this will install the program from the a: drive onto the hard
echo drive c:
: quit
echo off