Jump to content

MadsRem

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Denmark

About MadsRem

  • Birthday 05/03/1957

Contact Methods

  • Website URL
    http://

MadsRem's Achievements

0

Reputation

  1. I would like to understand why the switches aren't beeing passed to the msi. I have also tried with the following vbs-script, which installes still with autoupdate, so I wonder if the syntacs is 100% correct. Option Explicit On Error Resume Next Dim objShell : Set objShell = WScript.CreateObject("WScript.Shell") Dim objFSO : Set objFSO = CreateObject("Scripting.FileSystemObject") Dim objNetwork : Set objNetwork = WScript.CreateObject("WScript.Network") Dim strExec : strExec = "MSIEXEC /i " & Chr(34) & "\\Server\share\jre1.6.0_01.msi" & Chr(34) & " ADDLOCAL=ALL REBOOT=Suppress JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0" objShell.Run strExec,,1 Set OpSysSet = Nothing Set objShell = Nothing Set objFSO = Nothing WScript.Quit I have also tried with a batch-file: "M:\Generelt\Java (Sun) Offline installation\jre-6u1-windows-i586-p-s.exe" /s ADDLOCAL=ALL REBOOT=Suppress JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 Still no luck. I would very much like to understand why my scripts don't work, so I will be able to make correct scripts in the future (I have made a couple of scripts installing applications silently based on msi-packages with transforms and updates with no errors)
  2. I am trying to deploy jre to aprox. 500 users and I want to control when to update to newer versions. I have tried several suggestions, but with no luck. I have tried to use the command line as stated by Sonic, but java is still configured to autoupdate. Any suggestions are welcome.
×
×
  • Create New...