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.
|
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. |
|||
|
|
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
Once the file exists, you can create a shortcut to it, and even assign a keyboard shortcut too if deemed necessary. |
|||||
|
|
|
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:
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:
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. |
|||
|
|