home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Bila Vrana
/
BILA_VRANA.iso
/
018A
/
JDK1_1_B.ZIP
/
JDK1_1-B.EXE
/
setup.bat
< prev
next >
Wrap
DOS Batch File
|
1997-01-16
|
506b
|
19 lines
@echo off
more < license.txt
accept
rem The strange errorlevel checking done in the
rem following two lines works around differences
rem in behavior on WinNT versus Win95. We want to
rem make sure for both platforms that if you ^C
rem 'accept', then say you don't want to terminate
rem the batch job, installation will not proceed.
if errorlevel 1 goto done
if not errorlevel 0 goto done
:install
echo installing...
copy setup.bin jdk.exe > setup.out
jdk
del jdk.exe
del setup.out
:done