Quantcast
Channel: Wsus Package Publisher
Viewing all articles
Browse latest Browse all 3825

New Post: Java 1.8.51 error 0x80070643

$
0
0
Hi, thanks for the log file. It clearly confirm what I was thinking.
The given executable file not a valid Win32 application.
You set :
<ElementType>CustomUpdateElements.ExecutableElement</ElementType> 
<PathToExecutable>jre1.8.0_51.msi</PathToExecutable> 
<Parameters>/i jre1.8.0_51.msi /quiet /norestart AUTOUPDATECHECK=0 WEB_JAVA=1 JAVAUPDATE=0 JU=0 </Parameters> 
But you cannot RUN an .MSI file, you need to OPEN it with MsiExec.exe. As you cannot RUN an .XLS file, you need to OPEN it with Excel.exe.

So you should write :
<ElementType>CustomUpdateElements.ExecutableElement</ElementType> 
<PathToExecutable>%windir%\System32\msiexec.exe</PathToExecutable> 
<Parameters>/i jre1.8.0_51.msi /quiet /norestart AUTOUPDATECHECK=0 WEB_JAVA=1 JAVAUPDATE=0 JU=0 </Parameters>

Viewing all articles
Browse latest Browse all 3825

Trending Articles