WiX generated MSI is not compressed - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:41:41Z http://stackoverflow.com/feeds/question/390860 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/390860/wix-generated-msi-is-not-compressed 4 WiX generated MSI is not compressed unknown (yahoo) 2008-12-24T06:02:42Z 2008-12-29T06:20:56Z <p>I use WiX3 to generate MSI installation package. I have specified comression flag on in both the and elements:</p> <p> </p> <p>but the resulting MSI is not compressed at all - WinZip compressed it from 2M down to 600K.</p> <p>Am I missing something? </p> <p>I am using VS2008 btw.</p> http://stackoverflow.com/questions/390860/wix-generated-msi-is-not-compressed/391233#391233 1 Answer by Wimmel for WiX generated MSI is not compressed Wimmel 2008-12-24T10:51:05Z 2008-12-24T10:51:05Z <p>There is something missing in your question. But how do you know it is not compressed. If Winzip can compress it further, it does not always mean it is not compressed. You can use <a href="http://7-zip.org/" rel="nofollow">7-zip</a> to investigate the resulting msi file. There should be a cab inside, extract it, and look at the size before and after decompressing.</p> http://stackoverflow.com/questions/390860/wix-generated-msi-is-not-compressed/391268#391268 0 Answer by unknown (yahoo) for WiX generated MSI is not compressed unknown (yahoo) 2008-12-24T11:17:09Z 2008-12-24T11:17:09Z <blockquote> <p>There is something missing in your question. But how do you know it is not compressed. If Winzip can compress it further, it does not always mean it is not compressed. </p> </blockquote> <p>I was just using my common engineerical sense. If something could be compressed from 2M down to 600K using a WinZip - there's no way I can call it "compressed".</p> <p>Just did what you said (thanks a lot!!) about extracting msi and checking the a cab size. It turned out the cab size (~500K) was not a culprit. Most of the MSI size was contributed by 2 huge .bmp's - 450K each. This is how I reference them in the WiX script:</p> <p> </p> <p>is there any native to WiX way to compress -es ?</p> http://stackoverflow.com/questions/390860/wix-generated-msi-is-not-compressed/393145#393145 2 Answer by Rob Mensching for WiX generated MSI is not compressed Rob Mensching 2008-12-25T20:05:45Z 2008-12-25T20:05:45Z <p>MSI files are not OLE Structured Storage files. They cannot be compressed and have the Windows Installer still be able to read them. However, many things are stored in the MSI file (such as your UI graphics and CustomAction DLLs and Shortcut Icons) so you should be conscious of the content you are putting into the MSI.</p> <p>There is nothing in the WiX toolset to analyze each of the things you are putting them in the MSI and compressing them (except the cab file, of course since that is expected by the Windows Installer to be compressed).</p> <p>Honestly, the Windows Installer does not natively support the best compression of today. One thing to do is to build the package and use a bootstrapper distributes compressed content and uncompresses before passing it to the Windows Installer. That is the plan for WiX v3.5's burn bootstrapper.</p> http://stackoverflow.com/questions/390860/wix-generated-msi-is-not-compressed/397224#397224 1 Answer by sascha for WiX generated MSI is not compressed sascha 2008-12-29T06:20:56Z 2008-12-29T06:20:56Z <p>In regards to the huge bitmaps, I suggest editing them in photoshop to shrink them down. I managed to get two 600K bitmaps down to ~35k each by changing them to an indexed color pallete (Image > Mode > Indexed) and then saving the resulting file as a 8-bit compressed BMP.</p> <p>Give it a shot ;)</p>