It is possible to install Tomcat 6 silently using 32-bit/64-bit Windows Service Installer:
apache-6.0.30.exe /S /D=c:\tomcat6
However, when I have 32-bit JDK on 64-bit Windows machine, silent installation doesn't work. No error messages are shown, it just fails silently.
But when I have 64-bit JDK on 64-bit Windows machine, silent installation works fine.
I noticed, that when I have JDK 64-bit installed on 64-bit machine and I run normal Tomcat 6 installation, on Java Virtual Machine step, path to JRE is specified automatically. But when I have JDK 32-bit installed on the same 64-bit machine, on the same Java Virtual Machine step I do not see JRE specified automatically.
So as far as I understand, Tomcat 6 installer cannot figure out path to 32-bit JDK automatically. Moreover, on one of the comments about Tomcat silent installation on Apache mailing list one of the developers said:
When using Service launcher, the value of JVM dll to be used is stored in the registry. The environment variables are not used.
Is there any workaround or idea how to have silent Tomcat 6 installation on 64-bit machine with 32-bit JDK?