JRE upgrade issue : need help
Dear Friends,
I am trying to upgrades all pervious versions of java using major upgrde. Details are as belows:
I have to uninstall following version of JRE using JRE version 6.0.130:
5.0.60.5
6.0.20.6
6.0.30.5
6.0.50.13
6.0.60.2
I have done all the needful, that is, changed product code, changed project code, changed version (all were already differnt from previous version). Added upgrade item in Wise package studio in upgrade section.
RemoveExistingProducts sequencing is prior to InstallInitialize in InstallExecuteSection.
But.....Upgrade is not happening at all. Previous versions are still there.[:@]
Could anyone please advise, what is wrong. Am I doing something worong, or missed some steps.
Will appreciate all the help.
Thanks,
I am trying to upgrades all pervious versions of java using major upgrde. Details are as belows:
I have to uninstall following version of JRE using JRE version 6.0.130:
5.0.60.5
6.0.20.6
6.0.30.5
6.0.50.13
6.0.60.2
I have done all the needful, that is, changed product code, changed project code, changed version (all were already differnt from previous version). Added upgrade item in Wise package studio in upgrade section.
RemoveExistingProducts sequencing is prior to InstallInitialize in InstallExecuteSection.
But.....Upgrade is not happening at all. Previous versions are still there.[:@]
Could anyone please advise, what is wrong. Am I doing something worong, or missed some steps.
Will appreciate all the help.
Thanks,
0 Comments
[ + ] Show comments
Answers (16)
Please log in to answer
Posted by:
anonymous_9363
13 years ago
Posted by:
zipsantro
13 years ago
Posted by:
djain3
13 years ago
Posted by:
djain3
13 years ago
ORIGINAL: zipsantro
RemoveExistingProduct is conditioned as
REMOVEEXISTING Or (MODE="C" And (PREV_CONSUMER_VERSION<JDK_VERSION))
PLease check the condition result to analyze the upgrade.
Jeeoo!
Santro
Hi Santro,
I removed the condition still no luck...
could there be any other reason?
please suggest
Posted by:
kiptek
13 years ago
Posted by:
djain3
13 years ago
Posted by:
djain3
13 years ago
Posted by:
kiptek
13 years ago
Posted by:
Cuznmark
13 years ago
I had this same problem. We had so many different versions of Java installed on all of our machines I didnt want to go to each machine to remove all the different copies.. I found out how to push the latest version down.. and also learned how to quitely remove older version(used 1.5.0 as the oldest.) so I made a list of the versions of jre that was installed.. and have all the older version uninstall before installing the newest version.
install_java.bat - used netping to install or you can use psexec.exe.
PUSHD "\\server\installs\java"
rem JQS.exe hangs sometimes.. so I kill it.
taskkill /IM jqs.exe /f
rem uninstall all previous version from 1.5.0 to 1.6.12 -. when it moves to 1.6.14 then add 1.6.13 to the uninstall.
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150000}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150010}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150020}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150030}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150040}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150050}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150060}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150070}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150080}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150090}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150100}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150110}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150120}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150130}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150140}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150150}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150160}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150170}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160000}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160010}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160020}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160030}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160040}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160050}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160060}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160070}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160080}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160090}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160100}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160110}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160120}
rem install latest version silently .. no autoupdate either.
START /WAIT jre-6u13-windows-i586-p.exe /s IEXPLORER=1 AUTOUPDATECHECK=0 REBOOT=Suppress
POPD
It seems to work well here..
I also do this with Adobe reader.. it actually works quite well with them both.
install_java.bat - used netping to install or you can use psexec.exe.
PUSHD "\\server\installs\java"
rem JQS.exe hangs sometimes.. so I kill it.
taskkill /IM jqs.exe /f
rem uninstall all previous version from 1.5.0 to 1.6.12 -. when it moves to 1.6.14 then add 1.6.13 to the uninstall.
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150000}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150010}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150020}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150030}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150040}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150050}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150060}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150070}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150080}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150090}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150100}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150110}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150120}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150130}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150140}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150150}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150160}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150170}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160000}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160010}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160020}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160030}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160040}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160050}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160060}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160070}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160080}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160090}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160100}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160110}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160120}
rem install latest version silently .. no autoupdate either.
START /WAIT jre-6u13-windows-i586-p.exe /s IEXPLORER=1 AUTOUPDATECHECK=0 REBOOT=Suppress
POPD
It seems to work well here..
I also do this with Adobe reader.. it actually works quite well with them both.
Posted by:
kiptek
13 years ago
ORIGINAL: Cuznmark
I had this same problem. We had so many different versions of Java installed on all of our machines I didnt want to go to each machine to remove all the different copies.. I found out how to push the latest version down.. and also learned how to quitely remove older version(used 1.5.0 as the oldest.) so I made a list of the versions of jre that was installed.. and have all the older version uninstall before installing the newest version.
install_java.bat - used netping to install or you can use psexec.exe.
I would recommend this method. I used it & it works like a charm! Created a permanent java Uninstall ZSERVICE in our radia environment to use as a prereq. As we update java, i just update the batch file with the current version to add to the uninstall.
Posted by:
djain3
13 years ago
Posted by:
djain3
13 years ago
Posted by:
djain3
13 years ago
ORIGINAL: Cuznmark
I had this same problem. We had so many different versions of Java installed on all of our machines I didnt want to go to each machine to remove all the different copies.. I found out how to push the latest version down.. and also learned how to quitely remove older version(used 1.5.0 as the oldest.) so I made a list of the versions of jre that was installed.. and have all the older version uninstall before installing the newest version.
install_java.bat - used netping to install or you can use psexec.exe.
PUSHD "\\server\installs\java"
rem JQS.exe hangs sometimes.. so I kill it.
taskkill /IM jqs.exe /f
rem uninstall all previous version from 1.5.0 to 1.6.12 -. when it moves to 1.6.14 then add 1.6.13 to the uninstall.
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150000}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150010}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150020}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150030}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150040}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150050}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150060}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150070}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150080}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150090}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150100}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150110}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150120}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150130}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150140}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150150}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150160}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0150170}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160000}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160010}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160020}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160030}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160040}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160050}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160060}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160070}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160080}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160090}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160100}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160110}
START /WAIT msiexec.exe /qn /x {3248F0A8-6813-11D6-A77B-00B0D0160120}
rem install latest version silently .. no autoupdate either.
START /WAIT jre-6u13-windows-i586-p.exe /s IEXPLORER=1 AUTOUPDATECHECK=0 REBOOT=Suppress
POPD
It seems to work well here..
I also do this with Adobe reader.. it actually works quite well with them both.
Can we put thse command in landesk deployment tool?

so that the conversation will remain readable.