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 >
DOS Batch File  |  1997-01-16  |  506b  |  19 lines

  1. @echo off
  2. more < license.txt
  3. accept
  4. rem The strange errorlevel checking done in the
  5. rem following two lines works around differences
  6. rem in behavior on WinNT versus Win95.  We want to
  7. rem make sure for both platforms that if you ^C
  8. rem 'accept', then say you don't want to terminate
  9. rem the batch job, installation will not proceed.
  10. if errorlevel 1 goto done
  11. if not errorlevel 0 goto done
  12. :install
  13. echo installing...
  14. copy setup.bin jdk.exe > setup.out
  15. jdk
  16. del jdk.exe
  17. del setup.out
  18. :done
  19.