Java 1.6.0_29 not installing using this command
Hi All
Can any see whats wrong with this command, the log file is empty yet Java is not installing?
The data1.cab is in the same location as the msi incase that makes a difference
%systemroot%\system32\msiexec.exe /i jre1.6.0_29.msi /qn /norestart IEXPLORER=1 REBOOT=Suppress JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 SYSTRAY=0 /L C:\Temp\java16.txt
0 Comments
[ + ] Show comments
Answers (2)
Answer Summary:
%systemroot%\system32\msiexec.exe /I "%~dp0jre16029.msi" IEXPLORER=1 REBOOT=ReallySuppress JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 SYSTRAY=0 /qn
%systemroot%\system32\msiexec.exe /I "%~dp0jre16029.msi" IEXPLORER=1 REBOOT=ReallySuppress JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 SYSTRAY=0 /qn
Please log in to answer
Posted by:
jagadeish
12 years ago
Why do you try the same command line without /qn
One suggesstion here, If you really want to suppress reboot then I would recommend you to use REBOOT=ReallySuppress instead of Suppress
Comments:
-
If I try without the /qn its not a silent install, it launches the setup but then I have to click "install"
I need it to be a silent install - Bloomy 12 years ago -
What about /qb!
Have you tried this - jagadeish 12 years ago -
Just tried this and get error
"this installation package could not be opened. verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid win installer package"
Think that switch must be for .exe and not msi ? - Bloomy 12 years ago -
You need to supply full path of the jre1.6.0_29.msi file in command line... - jagadeish 12 years ago
-
Or Else
Create a batch file with the following commands
start /wait MSIEXEC /I "%~dp0jre1.6.0_29.msi" IEXPLORER=1 REBOOT=ReallySuppress JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 SYSTRAY=0 /L C:\Temp\java16.txt /qn
Keep this batch file in .msi's location and call it - jagadeish 12 years ago -
Jagadeish, Thanks so much finally got there with your help, just had to add little entry at the beginning of your command then it worked -
%systemroot%\system32\msiexec.exe /I "%~dp0jre16029.msi" IEXPLORER=1 REBOOT=ReallySuppress JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0 SYSTRAY=0 /qn
Really appreciate your help :-) - Bloomy 12 years ago
Posted by:
ontari.ontari
12 years ago