Problems with jre-7u21-windows-i586 deploy Win 7
Hi,
This is what I do:
I start to install the offline Exe-file, I grab the MSI-file (include cab-file) and deploy it. I get no errors and Java works well when I check it on the "Validate page".
The problem starts when I try to open Java from Control Panel. Nothing happends and when I look at the logs, it says something with : No user found. I then uninstall it with an admin login (account) and Java dissapears both from Control Panel and Installed softwares. After uninstall I log in as normal user and I can see Java in both Control Panel and Installed programs. When I try to open Java, it says something with: Cant find....
So I need to restore Win 7 to an earlier restore point.
If I run the MSI file localy in CMD as admin the installation goes 100% perfect and I can open Java. The difference is that SCCM 2012 uses the system account and when I install it, It runs on my account.
I really dont know what the problem is. Im at home right now and dont have any more details to give, but can surely answer with more details tomorrow from work.
Thanks,
Answers (0)
Be the first to answer this question
It *sounds* to me like you have some user-level component in there and, when installing with System, it's getting written to the System account's profile.
What did you specify for the ALLUSERS property? Also, as ever, a verbose log of the install is worth taking. - anonymous_9363 11 years ago
To the topic: check logfile for ALLUSERS properties. If its "2", you installed it only for the current user. In case of SCCM that's, as VBScab already said, the SYSTEM user. Please use ALLUSERS=1 in your command line. - Olaf S 11 years ago
msiexec /i "jre1.7.0_21.msi" /qn AUTOUPDATECHECK=0 JAVAUPDATE=0 JU=0 EULA=0 - Tompa 11 years ago
msiexec /i "au.msi" /qn
start /wait jre-7u21-windows-i586.exe /s /v"/norestart AUTOUPDATECHECK=0 JAVAUPDATE=0 JU=0 EULA=0"
msiexec /i "jre1.7.0_21.msi" /qn AUTOUPDATECHECK=0 JAVAUPDATE=0 JU=0 EULA=0
REM Disable Java Update Tab and also Updates and Notifications
reg add "HKLM\SOFTWARE\Wow6432Node\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /t REG_DWORD /d 00000000 /f
reg add "HKLM\SOFTWARE\Wow6432Node\JavaSoft\Java Update\Policy" /v NotifyDownload /t REG_DWORD /d 00000000 /f - Tompa 11 years ago
Can I use the ALLUSER=1 property (in my command line) in both MSI deploy or EXE deploy? - Tompa 11 years ago