Is there anyway to start a windows application whenever windows is started ( i.e., when the OS loads but before I log in)?

link|improve this question

53% accept rate
feedback

4 Answers

up vote 4 down vote accepted

You have to run it as a Windows Service. The easiest way to do this is to install it via SrvAny (it's in the resource kit). Microsoft KB Article KB137890 explains how to do it.

Another option, though not free, is to use a third-party tool like FireDaemon to handle creating and monitoring the service.

link|improve this answer
1  
Here's a similar walk-through with pictures: tacktech.com/display.cfm?ttid=197 – Jared Harley Aug 14 '09 at 1:19
feedback

On recent versions of Windows (read: Vista and higher) you can also use the Task Scheduler to do this. You simply need to set up a task using "On startup" as trigger.

link|improve this answer
feedback

Only if it's installed as a service. Otherwise it has to start in an interactive session.

link|improve this answer
feedback

You would have to run it as a Windows Service.

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.