/build/static/layout/Breadcrumb_cap_w.png

Oracle Java SE Development Kit

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 10k  |  Created: 11/13/2007

Average Rating: 0
Java SE Development Kit has 1 inventory records, 0 Questions, 0 Blogs and 1 links. Please help add to this by sharing more!

Deployment Tips (7)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 1 / 5 (Very Easy) based on 1 ratings
Most Commonly Reported Deployment Method
Windows Installer Command Line (No MST)
120
Note
We all know that the standard Java Runtime Environment is bundled with the executable for Java Development Kit. I mean, it would be CRAZY to have the means to develop Java applications but not be able to actually run any simple web apps, right?

Well, in doing a silent MSI deployment of JDK 1.6 (both Update 2 and then later Update 3), I could not for the LIFE of me get the included JRE to install. Even worse yet was the fact that there were no error messages or any other kinds of warnings that JRE fell by the wayside. That is, not until somebody needed to use some Java-driven web applications and both IE and FireFox reported that Java was MIA.

I tried ripping open JDK's MSI with Orca, but there were no properties for IEXPLORE or MOZILLA like there are in JRE's MSI. I then tried a couple different tools to create a transforms file, but THAT didn't work because of the nature of JDK's installer. When doing a manual installation from the executable you would get to the last dialog for JDK, then JDK would install. Once JDK was done, THEN you would get to the prompt for the "advanced" settings; this is the point where the JRE installation runs. When doing it this way (manually), JRE installs by default and with the IE and FF plug-ins enabled, and everybody rejoices. But when trying to capture the dialog responses for the transforms file, the packagers I used both "concluded" after the last dialog for the JDK portion of the installation. They apparently didn't recognize that there were more options down the road after JDK itself installs, and so there was no way to have the transforms file include anything about the JRE portion of the installation.

Bottom line: I ended up having to download and launch the JRE MSI separately (see the other entries about JRE in the Package KB for details on how to extract and/or modify its MSI) in addition to the JDK package. So far it works great; I push them out separately, they are completely independent from one another and there are no consequences with pushing out one before the other.

If anybody happens to know of a way to do a silent push of JDK's MSI to include the JRE then I'd love to hear it and be able to kill two birds with one stone. Otherwise, I hope the information above is able to spare somebody else the same headache I went through.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
5
Note
Just to save people time the installer extracts its JDK msi to
c:\documents and settings\username\application data\sun\java
The JRE is extracted to local settings temp
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
2
Command Line
JDK Silent Installation

You can perform a silent JDK installation by using the command-line arguments. The following arguments install JDK silently and provide an option of installing public JRE and JavaDB.

JDK installs public jre and javadb in the silent mode.

Use the command jdk.exe /s

JDK does not install public jre, but installs javadb in the silent mode.

Use the command jdk.exe /s ADDLOCAL="ToolsFeature,DemosFeature,SourceFeature,JavaDBFeature"

JDK does not install javadb, but installs public jre in the silent mode.

Use the command jdk.exe /s ADDLOCAL="ToolsFeature,DemosFeature,SourceFeature,PublicjreFeature"

JDK does not install either javadb or public jre in the silent mode.

Use the command jdk.exe /s ADDLOCAL="ToolsFeature,DemosFeature,SourceFeature"

Install public jre and javadb to the specified directories.

Use the command jdk.exe /s /INSTALLDIRPUBJRE=c:\test\ /INSTALLDIRJAVADB=c:\testdb
Note - Some of the arguments work only with 6u15 and higher releases.

Source: http://java.sun.com/javase/6/webnotes/install/jdk/install-windows.html
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
2
Note
the installer extracts its JDK msi to
C:\Users\username\AppData\LocalLow\Sun\Java
in Windows Vista
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Note
We deploy the corresponding JRE first, then the JDK. The following is just an excerpt from the script and won't work in isolation but should give you an idea.

if not exist "%ProgramFiles%\Java\jre1.6.0_07\bin\java.exe" goto JREINSTALL
goto JDKINSTALL

:JREINSTALL

set APPMSI=JRE160Update7
set MSITXT=Sun Java Runtime Environment 1.6.0 Update 7

start /w msiexec /i %WINDIR%\installer\%INSTALLDIR%\%APPMSI%.msi ALLUSERS=2 JAVAUPDATE=0 AUTOUPDATECHECK=0 JU=0 TRANSFORMS=%WINDIR%\installer\%INSTALLDIR%\%appmsi%.mst REBOOT=ReallySuppress /qn /Liv %TEMP%\%APPMSI%.log

regedit /s "%WINDIR%\installer\%INSTALLDIR%\noautoupdate.reg"

:JDKINSTALL

set APPMSI=JDK160Update7
set MSITXT=Sun Java Development Kit 1.6.0 Update 7

start /w msiexec /i %WINDIR%\installer\%INSTALLDIR%\%APPMSI%.msi ALLUSERS=2 JAVAUPDATE=0 AUTOUPDATECHECK=0 JU=0 TRANSFORMS=%WINDIR%\installer\%INSTALLDIR%\%appmsi%.mst REBOOT=ReallySuppress /qn /Liv %TEMP%\%APPMSI%.log
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Note
In the msi the publicjre and javadb are executed in the InstallUISequence. This sequence is only run in Full and Reduced UI modes which is why these features do not install with the /qb and /qn command switches.

Using the following steps & command will allow all features to install unattended.

Open the msi in orca or any other msi editor. Open the CustomAction table and change the commandline stored in the "installpublicjre" to

msiexec.exe /i "[INSTALLDIR]\jre.msi" /qn ADDLOCAL=ALL SDKSILENT=1 JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 SYSTRAY=0 static=1

Then run the msi with this commandline

msiexec /i jdk1.6.0_29.msi /qr JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 SYSTRAY=0 static=1

ADDLOCAL isn't required, if it's not specified the installer installs all features.
IE & MOZILLA have been deprecated.
STATIC=1 stops other version installers from updating or uninstalling this version. (Exclude if you don't need multiple versions of java installed).

It's not completely silent but at least it will install the java jdk with all features unattended.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
-3
Command Line
Answering Jeemo
U can (with Orca) Apply Changes to the JRe Installation.
Open MSI : And find the JREinstall Paramters

I Changed them to
msiexec.exe /i "[INSTALLDIR]\jre.msi" ADDLOCAL=ALL SDKSILENT=1 IEXPLORER=1 MOZILLA=1 WEBSTARTICON=0 JAVAUPDATE=0 SYSTRAY=0 REBOOT=Suppress

Also u can get rid of the [DEFAULTBROWSER] Popup and Change the Paths (i.e. of the DB Folder)


But as Seen @ Notes :
The unpacked MSI + CABS can ONLY install jdk and no other Features!
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (1)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Versions

Java SE Development Kit

Version

6

Questions & Answers (0)

Questions & Answers related to Oracle Java SE Development Kit

Blogs (0)

Blog posts related to Oracle Java SE Development Kit

Reviews (0)

Reviews related to Oracle Java SE Development Kit

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ