home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aztec Shareware Collection
/
STRATEGY.ISO
/
igo
/
install2.bat
< prev
next >
Wrap
DOS Batch File
|
1991-12-28
|
565b
|
27 lines
@echo off
if %1x==x goto error
if %2x==x goto error
echo Copying to %2 drive.
copy %1*.* %2\IGO
echo Remove Program disk "A" and insert Data disk "B" into drive %1,
echo then press any key to continue.
echo If you are copying from a single 3 1/2" disk or high density 5 1/4"
echo disk, you don't need to change disks.
pause
echo Copying to %2 drive.
if not exist %1igo.exe copy %1*.* %2\IGO
echo.
echo To run Igo
echo %2
echo CD \IGO
echo IGO
echo.
%2
cd \igo
goto done
:error
echo You must specify a source and destination drive
:done