why my .net application horribly slow to start after the machine is rebooted?

后端 未结 4 516
刺人心
刺人心 2021-01-13 01:12

Does anyone know why it is so horribly slow to start a .net application after the machine is rebooted(i.e cold start) ?

After researching in google I found some cl

相关标签:
4条回答
  • 2021-01-13 02:03

    If you are pulling up a large number of files from the hard drive, then your system hasn't loaded them yet. This could be the reason for the slow start.

    Also, if you haven't given your system sufficient time to boot up, it could still be loading other applications at the same time.

    0 讨论(0)
  • 2021-01-13 02:06

    Another reason could be Authenticode signed assemblies and no internet connection. See Why are signed assemblies slow to load? and WPF application slow on startup for example.

    0 讨论(0)
  • 2021-01-13 02:08

    You could use ProcMon from SysInternals to profile your app during startup. This will log all registry/file access with time stamp. It may point you in an area where there's a delay.

    Also, when cold booting, does your machine have a lot of disc access? Is your virus scanner doing a full scan at boot?

    0 讨论(0)
  • 2021-01-13 02:11

    As others have stated, your computer is probably still loading other applications during the first few minutes after bootup. Your hard disk (one of the slowest components) is busy trying to load those other apps and their respective data.

    If you have a second disk on your computer, try installing your app on the second disk. If the second disk is usually idle during this time, I'm thinking that the app will start up much more quickly.

    0 讨论(0)
提交回复
热议问题