Why windows service not start automatic after windows start

邮差的信 提交于 2019-12-02 12:19:10

This happens most often when a resource needed by your service is not available when Windows tries to start it. Please review what your service needs to operate and ensure that you setup a dependency for each resource required. For example, if your service uses the network, try making it dependent on the "Workstation" service (named "LanmanWorkstation").

If you are in the post-Vista world, you can also set the startup type to "Automatic Delayed" to have Windows delay the starting of your service by about a minute. This is usually enough time for all the important/core services to establish themselves.

Check in windows services settings. Maybe you didn't reinstall service after changing start type?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!