Jump to content

kristant

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About kristant

Profile Information

  • OS
    Windows 7 x64

kristant's Achievements

0

Reputation

  1. 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 SDK Edit the .msi with Orca - New Transform - Property o 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
×
×
  • Create New...