Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to create a windows desktop shortcut that will restart a windows service?

I'd like a button to restart my apache service after I have made changes to the config file.

share|improve this question
like a superuser question – kokbira Jun 27 '12 at 19:04

2 Answers

up vote 10 down vote accepted

You can do this in a batch file, then make a shortcut to it.

Create a text file with the following content, but save it with the file extension .bat

net stop "Service Name"
net start "Service Name"

Once the file exists, you can create a shortcut to it, and even assign a keyboard shortcut too if deemed necessary.

share|improve this answer
Works a treat, thanks. – Jon Winstanley Jan 3 '10 at 18:56
Thanks just what I needed. – Mex Sep 3 '10 at 11:01

I'm using system consisting of simple CMD batch script and LNK shortcut. CMD batch script contains sc command, which acts as a Windows services communicator. For starting or stopping a service it has the same parameters as net command:

sc <start|stop> <service>

So, e.g. for starting Apache web server service and MySQL database server service, the batch script named web_servers_start.cmd could looks like this:

sc start "Apache2.2"
sc start MySQL

The batch script must be launched elevated to administrator rights. So I created a LNK shortcut for web_servers_start.cmd batch script and checked "Run as administrator" in the file's Properties dialog under the "Advanced..." button on the Shortcut tab.

The LNK shortcut you could put on the desktop, start menu or wherever you prefer.

Note: One of differencies between sc and net commands is that sc sends a message (e.g. start) to the service and itself ends immediately while net waits until service operation is done. If you don't need to manipulate with operation status or error code, sc command is much faster.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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