Oracle java 8 update 111 msi extracting
Hello!
For wsus package publisher i need msi package of java. Last java update is 111.
I downloaded exe package, started process monitor and looked at the installing process. Found out, that this process create jre1.8.0_11164 on %appdata%LocalLow\Oracle\Java\jre1.8.0_111_x64. ok
But when i start this msi, i catch this error
What am i doing wrong?
1 Comment
[ + ] Show comment
Answers (6)
Answer Summary:
Please log in to answer
Posted by:
rileyz
8 years ago
Need more details.
- What command are you using?
- What security context, SYSTEM or user account?
- Do you turn on logging for the msi install? (l*vx)
I've seen in other Java packages that the MSI and does not like handling PROPERTIES passed to the msi, thus you need to use the config.xml - I now think this is the better option rather than using PROPERTIES. If you look around on itninja, you will find other posts that will help.
Comments:
-
What comment for what? i started exe without any parameters, msi too. Security - user (vs admin rights). I didnt turn msi logging - mykolaq 8 years ago
Posted by:
anonymous_9363
8 years ago
Remember that all the EXE does is pass parameters to MSIExec.EXE so just use the MSI to begin with. Remember also that the MSI isn't a "proper" MSI, since it's just a wrapper for Oracle's installer.
>I didnt turn msi logging
So how on Earth do you expect to find out which Action is causing the problem? Divine intervention?
Comments:
-
Fairly, u're right. - mykolaq 8 years ago
Posted by:
rockhead44
8 years ago
Do you have to have 64-bit? I extracted the .msi for the 32-bit version yesterday without error.
Comments:
-
64 bit - mykolaq 8 years ago
Posted by:
mykolaq
8 years ago
Log of msi install . Parameters
msiexec /i jre1.8.0_11164.msi /qb /L*V c:\javalog.txt
Posted by:
786_ak
8 years ago
Top Answer
I ran into the same issue and found this article helpfull.
https://community.spiceworks.com/topic/1144634-java-8-update-60-no-more-msi
Have fun,
AK
Comments:
-
i'm so inattentive. Thanks - mykolaq 8 years ago
Posted by:
mathieu.bourgon
8 years ago
I solved that this morning by launching it "As Admin".
Create a cmd calling the msi. Save. Right click, run as Administrator.
Cheers! - mathieu.bourgon 8 years ago