vote up 6 vote down star
3

I've been taking note of the .exe file size of many applications.

I saw that Visual Studio 2005 has an .exe size of 453KB, and VS2008 of 1.04MB because they divide the application into many parts (.exe + many .dll files).

I saw also that MS Outlook has a very large .exe file (11.8MB) while MS Word is very small (398KB)!

After pondering the things that I had seen, I was left with these questions:

  1. Is there an advantage to having a small .exe, even if the final size of the application (all DLLs loaded) is much larger?
  2. And if so, at what size is it good to begin breaking up an application into separate modules?
flag

50% accept rate
Size is generally pretty irrelevant these days - unless you create gigabyte sized EXEs! I tend to prefer self-contained EXE with everything in it - gives less options to forget something and cause problems – marc_s Aug 16 at 12:30
Thanks to all how closed the question. – Wael Dalloul Aug 16 at 13:38
4  
Nominated for reopening. While perhaps not expressed as well as it could be, there is a useful question here: what are the pros and cons of splitting an application into multiple modules versus one monolithic executable? – Mark Bessey Aug 16 at 16:23
2  
Edited - it was phrased subjectively, but i suspect this was an unintentional error on the part of Wael. I doubt he really cares what our opinions are, unless we have solid facts to back them up with... – Shog9 Aug 18 at 1:12
Nominated for reopening. – Robert Harvey Aug 18 at 1:27
show 1 more comment

2 Answers

vote up 3 vote down

A large executable probably has less less shared libraries (less re-usable code), meaning that the application probably is more memory intensive than an application using shared libraries. If you want a system with minimal memory footprint you want shared libraries.

A big exe is likely to be more self-contained, which might make it easier to keep a stable deployment.

link|flag
vote up 3 vote down

As a general rule, big size exe may mean you collect all the dependencies in single file so no dependency problem like dll hell but every time you want to fix any thing in small module the user has to download this big exe!!!

On the other hand small exe it may mean you modularize your application to different modules so it is easy to maintain and upgrade these modules separately and user does not have to download the big chunk exe

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.