Hello.
I'm trying to install Java 10 with the .msi provided in the .exe file via SCCM but without success. I'm trying to use the same installation procedure I used from versions 8 and below but without success. I never had problems with the versions below 8.
I can see the installation process starting in Software Center but it stops a few seconds after without any error message. In the log file I see these messages:
MSI (c) (AC:2C) [12:25:59:587]: Product: Java 10.0.1 (64-bit) -- Installation failed.
MSI (c) (AC:2C) [12:25:59:588]: Windows Installer installed the product. Product Name: Java 10.0.1 (64-bit). Product Version: 10.0.1.0. Product Language: 1033. Manufacturer: Oracle Corporation. Installation success or error status: 1603.
I searched in the Internet for the error 1603 but none of the workarounds changed anything.
Just to be clear, why do I see available for download version 8u172 and version 10? What are the main differences between them?
I just tried to install version 8u172 with the same batch file and had no problems with it; installed perfectly.
My install batch file:
taskkill /F /IM javaw.exe
taskkill /F /IM jqs.exe
taskkill /F /IM jusched.exe
if exist "C:\Program Files\Java\jre-10.0.1" (RMDIR "C:\Program Files\Java\jre-10.0.1" /S /Q)
start /wait msiexec.exe /i "jre10.0.1full.msi" /l*v c:\windows\temp\Java_installation.log
timeout 120 > NUL
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /d 0 /f
Thanks in advance for your help!
Pedro