gotenks98 Posted December 31, 2014 Posted December 31, 2014 (edited) nevermind figured it out. Edited December 31, 2014 by gotenks98
DosProbie Posted January 4, 2015 Posted January 4, 2015 Glad you got it working, why don't you share the switches you used so it may also help out the next reader. ~DP
niT3_riD3r_pr0 Posted February 14, 2015 Posted February 14, 2015 switch is: /sAnd, for its msi, first run the main installer (downloaded from the java website), then go to C:\Users\{user}\AppData\LocalLow\Sun\Java\jre_{version}, and you sill find the msi with its Data.cab there. Cheers.
kristant Posted June 16, 2015 Posted June 16, 2015 This is what I have and it seems to work with our applications to silently install Java and allow things to run. "%wpipath%\Install\Java\jre1.8.0_45_.msi" TRANSFORMS = "%wpipath%\Install\Java\Java8u45.mst"{FILECOPY} "%wpipath%\Install\Java\deployment.config" "C:\Windows\Sun\Java\Deployment"{FILECOPY} "%wpipath%\Install\Java\deployment.properties" "C:\Windows\Sun\Java\Deployment"{FILECOPY} "%wpipath%\Install\Java\exception.sites" "C:\Windows\Sun\Java\Deployment" I duplicate above for the 32bit version of Java and have a Java 64bit and Java32bit application to install. My deployment.config file contains the following lines and was created using Notepad:#################### deployment.system.config = file\:\C\:/Windows/Sun/Java/Deployment/deployment.properties deployment.system.config.mandatory = TRUE#################### My deployment.properties file contains the following lines and was created using Notepad:#################### deployment.security.level=HIGH deployment.browser.path=C:\Program Files\Internet Explorer\IEXPLORE.exe deployment.user.security.exception.sites=C\:/Windows/Sun/Java/Deployment/exception.sites deployment.security.SSLv2Hello=TRUE deployment.user.security.exception.sites.locked deployment.security.level.locked#################### my exception.sites file contains a list of the sites I needed added to the Site Exceptions per user in the Java Control Panel https://somewebsites.com/https://someotherwebsite.net/https://www.anotherone.com/ The .MST was created using Orca which is in the Windows SDKEdit the .msi with Orca- New Transform- Propertyo CHANGE:§ AUTOUPDATECHECK = 0§ Add row: IEXPLORER = 1§ JAVAUPDATE = 0§ Add row: JU = 0§ RebootYesNo=No§ Add row: REBOOT = R§ Add row: SYSTRAY=0§ Add row: WEB_JAVA=1§ Add row: WEB_JAVA_SECURITY_LEVEL=H- Generate Transform So that's how I did it, and it's working! Good Luck
UtCollector Posted March 24, 2017 Posted March 24, 2017 (edited) Here is the switch for a newer Jave 8: jre-8u121-windows-i586.exe /s INSTALL_SILENT=1 STATIC=1 AUTO_UPDATE=0 WEB_ANALYTICS=0 REBOOT=0 NOSTARTMENU=1 SPONSORS=0 /L C:\Windows\Temp\Install_SDC_Oracle_JavaRE_1.8.1.21_01.00_EN_x64.log Just replace the build nr. and see if it works for you. Found this here: http://www.itninja.com/software/oracle/java-8/8-update-66 Edited March 24, 2017 by UtCollector
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now