vote up 1 vote down star

I have a simple .NET 2.0 windows form app that runs off of a networked drive (e.g. \MyServer\MyShare\app.exe). It's very basic, and only loads the bare minimum .NET libraries. However, it still takes ~6-10 seconds to load. People think something must be wrong that app so small takes so long to load.

Are there any suggestions for improving the startup speed?

flag

5 Answers

vote up 3 vote down check

Try out Sysinternals Process Explorer. It has an column of "% time in JIT". If that number is large you could run ngen on your application. If it's not it's likely to be a slow network connection. CodeGuru has a tutorial on usage of ngen.

link|flag
vote up 3 vote down

Determining JIT time for weighing NGEN feasibility is certainly a good starting point. I also would agree with those who look to fudge the load time by using another entry point to then load the assemblies. Often it's the appearance of speed versus actual speed that improves the user experience.

link|flag
vote up 2 vote down

To speed up load time, you can compile a tiny start application and let that application do the loading of assemblies in runtime from a library outside bin folder.

http://support.microsoft.com/kb/837908

link|flag
vote up 1 vote down

Setup Clickonce for the app so it's deployed to the local machine.

link|flag
This may or may not help...Clickonce will have to check the server for the latest version. – Smallinov Sep 19 '08 at 19:33
You can write a few lines of code to prevent it from checking on load, and check for updates asynchronously. – EHaskins Sep 19 '08 at 19:41
vote up 0 vote down

You could cheat like Microsoft Office (and Adobe I think) and add an app in the Startup group that tells the app to load and then immediately unload. That way the DLL's are pre-cached in memory for when the user tries to start the app. Only catch: I'm not completely sure if it works this way with networked files -- and if it doesn't, this might be the cause of the slow start (ie you're always doing a cold start vs a possible warm start if running from the local machine).

link|flag
I just loves those hacks, just hate them for slowing up my system when used – Claus Thomsen Sep 19 '08 at 19:56
-1. Crapping all over the user's machine is not a substitute for fixing your performance problems – Orion Edwards Feb 12 at 21:42

Your Answer

Get an OpenID
or

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