At my company we used an old outdated ant system routine to create an msi installer. Since it's quite unmanageable I replaced the whole routine by a python routine.
It basically does the same thing, gather a bunch of files, and build an msi installer with wix.
The problem I'm dealing with is that the msi created by the ant routine is ~900KB larger than the one created by the python routine (Both ~140MB). I tried looking for a difference, but can't manage to find one.
What I've tried:
- Install both installers on a clean machine: Both install folders contain the same files and are equal in size.
- Simply unzip both msi's and compare them: No difference
- Compare both msi tables with SuperOrca: only the ProductCode is different, but this is as expected.
I have no other ideas on why there could be a filesize difference, but feel kind of uncertain since something might be missing. Any ideas?