home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%SystemRoot%"=="" goto W95OS
- if "%winbootdir%"=="" goto NTOS
-
- :NTOS
- if not exist %SystemRoot%\Java\VJTrial\msdev\setup.exe goto error
- REM Run the VJ trial installation EXE
- %SystemRoot%\Java\VJTrial\msdev\setup
- goto end
-
-
- :W95OS
- cd %winbootdir%\Java\VJTrial
- if not exist %winbootdir%\Java\VJTrial\msdev\setup.exe goto error
- REM Run the VJ trial installation EXE
- %winbootdir%\Java\VJTrial\msdev\setup
- goto end
-
- :error
- echo:
- echo ERROR: Unable to install Visual J++ Trial version
- echo Try running \WindowsDir\Java\VJTrial\MSDev\Setup.exe
- echo:
- pause
-
- :end
-