Start/stop a service using command line
The netsh tool (netsh.exe) can automate the startup or shutdown of a service through the following command line:
Net start name_of_service
Net stop name_of_service
This requires administrator rights (or PowerUser).
If you do not have administrator rights, you can still put a pause and restart:
Net pause name_of_service
Net continue name_of_service