4

I'd like to perform some task (start a program) on a computer running Windows every time it's (re)started. It's remote computer and just placing shortcut in autostart doesn't work because it's run every time I log into using remote desktop.

How can I do it?

2 Answers2

9

You can use the Windows Task Scheduler. It's been a while since I used it on XP, but in Vista and Windows 7 you can schedule a task to occur on startup. This can be a batch file, or executable.

GaryJL
  • 904
2

You are referring to running an application as a service. If the application supports it you can look at using Service Any. This will start the application when the machine boots without needing to login.

However be aware that most applications don't work with it, unless they are service type daemons already.

BinaryMisfit
  • 20,731