home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of the Best 4
/
shareware.iso
/
games
/
disk030
/
start.bat
< prev
next >
Wrap
DOS Batch File
|
1995-08-01
|
464b
|
23 lines
cls
echo off
echo This file will copy the game BAYRON to your 'C' hard disk.
echo After you run it, you will be given the option of removing it from your
echo hard drive. Just answer 'yes' to the delete question.
echo It requires 3 MEGS of hard drive space.
choice /c:yn Go ahead with the copy to hard drive?
if errorlevel 2 goto end
if errorlevel 1 goto copy
goto end
:copy
xcopy *.* c:\bayron\
c:
cd \bayron
go
cd..
deltree bayron
:end