home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 6
/
CD-ROM_Today_-_The_Disc_6_December_1994.iso
/
pc
/
sc
/
scinstd.bat
< prev
next >
Wrap
DOS Batch File
|
1994-10-17
|
394b
|
30 lines
@echo off
REM JGP:)
cls
echo This program will take about 3Mb of hard drive space!
echo (Type ctrl+C to stop installation)
pause
md c:\sc
copy d:\sc\*.* c:\sc
attrib -r c:\sc\*.* /s
c:
cd \sc
setup.exe
echo Would you like to run Star Crusader now?
choice /c:YN Yes or No?
if errorlevel 2 goto end
if errorlevel 1 goto runc
:runc
sc.com
goto end
:end
pause