Java 8 upd 60 Managed Install: Computer is set to deploy, but doesn't appear in managed install tasks?
I’m setting up a software distribution for Java 8 update 60
and am testing it on 2 computers. So far it installs to one of the computers, G011135.
I can check the managed install tasks and the one computer where the install was successful appears, and the other one does not. I was able to set up a managed install of Adobe Reader DC and it installed to both computers.
I'm guessing Java won't install to this missing computer and I have to somehow make it appear under the managed install tasks?
5 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question
I imagine I would have to set up a script to uninstall all the old versions? - edj3184 9 years ago
Edit the MSI with the following changes:
Property table:
IEXPLORER 1
JU 0
MOZILLA 1
AUTOUPDATECHECK 0
JAVAUPDATE 0
RebootYesNo No
Registry table:
NotifyDownload value 0
Set up a deployment.config file with only this line:
deployment.system.config.mandatory=true
*Not sure if I really need that config file...
*There are a few other changes I made to the MSI but I don't recall them off the top of my head...will have to look at it some more.
Then I put the MSI, MST I created, and config file I created into a ZIP file and associated it with the software entry for Java 8 update 60.
Set the MI to "Override Default Installation" and used the following command:
msiexec /qn /i jre1.8.0_60.msi TRANSFORMS=java8u60.mst
Turned on "Don't Prepend msiexec.exe" And that's about it.
I did not install the old version. I think there may be a way to edit the msi so that it does uninstall all old versions upon install, but I haven't found it yet. - edj3184 9 years ago
WMIC product where "Name LIKE '%%java%%'" call uninstall /nointeractive - rockhead44 9 years ago
http://www.itninja.com/question/managed-install-java-8-update-40 - rockhead44 9 years ago