1

So my package is working. Problem is, it doesn't uninstall the old version during the install. If I run the install on the local system it works fine.

Here is the command line I'm using:

jre-6u16-windows-i586-s.exe /quiet

Dennis Williamson
  • 60,515
  • 14
  • 113
  • 148
MathewC
  • 6,877
  • 9
  • 38
  • 53

1 Answers1

2

The command line we use is

160_11\jre-6u11-windows-i586-p-s.exe /qn JAVAUPDATE=0 AUTOUPDATECHECK=0 REBOOT=Suppress

This does remove the previous point release, but doesn't remove previous major releases (eg if we previously had 1.6 u05 on the machine that would be upgraded, but the 1.5.x version would be left.

We do this for backwards compatibility (which is always the major problem with Java) reasons.

MathewC
  • 6,877
  • 9
  • 38
  • 53
GAThrawn
  • 2,424
  • 3
  • 20
  • 38