Best srvany.exe for Windows XP and Windows 7?

10

2

What is the best program to use on windows XP and Windows 7 to do what srvany.exe does on windows NT (run a process as a service)?

myforwik

Posted 2010-05-27T23:37:52.177

Reputation: 123

Question was closed 2016-12-17T03:35:12.953

Answers

7

srvany, of course.

Windows XP and 7 are NT, and the srvany from Windows 2003 ResKit works just fine on them.

user1686

Posted 2010-05-27T23:37:52.177

Reputation: 283 655

6

Sharjeel Aziz

Posted 2010-05-27T23:37:52.177

Reputation: 2 643

4

Windows comes with the SC.exe tool which allows you to directly create and modify services.

Simply go to an elevated Command Prompt and type:

sc.exe create <Service Name> binPath= <Path> DisplayName= <name>

For example, to create a (useless) notepad service, you could use:

sc.exe create MyNotepadService binPath= "C:\windows\notepad.exe" DisplayName= "My notepad Service"

(Please note, spacing after the equals and before the value is important)

You can then start the service from the command prompt using SC start <Service Name> or through the services section of Computer Management.

William Hilsum

Posted 2010-05-27T23:37:52.177

Reputation: 111 572

11If the exe doesn't respond to service commands, then I believe it will not work with sc. For example cmd.exe won't run at all unless you set it as interactive, which is depreciated in vista and 7 and doesn't work either. – myforwik – 2010-05-28T05:10:04.027

3

FireDaemon. You have to pay for it but it has a lot of features and works well.

Sim

Posted 2010-05-27T23:37:52.177

Reputation: 1 438