Start Windows Application whenever Windows is Started

0

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

Graviton

Posted 2009-08-14T01:09:29.103

Reputation: 5 006

Answers

4

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.

Joshua

Posted 2009-08-14T01:09:29.103

Reputation: 4 434

1

Here's a similar walk-through with pictures: http://www.tacktech.com/display.cfm?ttid=197

– Jared Harley – 2009-08-14T01:19:20.830

2

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.

Joey

Posted 2009-08-14T01:09:29.103

Reputation: 36 381

0

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

squillman

Posted 2009-08-14T01:09:29.103

Reputation: 5 676

0

You would have to run it as a Windows Service.

JP Alioto

Posted 2009-08-14T01:09:29.103

Reputation: 6 278