Converting two distinct installers (before my time) into single mixed.
The new mixed installer will be performing either new, or upgrade type installs (the original single-purposed installers did not keep the msi file
around - and the file organization is slightly different).
On x86 systems it works fine. On 64 bit system, it's mostly there. Problem is....
the older release put three files in sysWow64 directory, and the same three (by name, the dll was a 64-bit build) in system32 directory.
The new release however only needs the three files placed into system32 directory. This does in fact happen. What I want to happen as
a result of the 'upgrade' is a removal of the three files in sysWow64. By empirical evidence (though I'm not sure why), the dll file is
in fact removed from the sysWow64 directory as desired, but the remaining two were left remaining.
I then added a custom rule that would remove
those two file using a VB script. Although the log indicates some awareness of this custom ation script, it doesn't appear that
the script was either called, or worked because the two files are still left remaining.
I have attached the config files for the three installers: x86 only, x64 only and mixed. Also enclosed is the
log-file for the install, and the vb script file.
I don't understand what is governing the removal of the one file, and why the other two are left standing.
any suggestions