Is there any way to set priority for services at start up? I want my local area network to start before other network-related services.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

No, there is no such thing as "priority" because it is based on "dependency".

Let's say we have three services A, B, and X. A and B are dependent on X.

X will start first, and when it is done starting A and B will be started later. Note that this means A and B cannot be started without X already started. Also be aware that Windows does not guarantee the order in which A and B will be started (if you need to guarantee order, create a dependency between them).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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