Jump to content

Recommended Posts

Posted (edited)

HOW TO Start or Stop or pause or resume or restart the services

and change start up type

Try something like this to stop and restart services.

#include <Process.au3>
$StopService = _RunDos("net stop servicename")
$StartService = _RunDos("net start servicename")
Edited by EndFunc
EndFuncAutoIt is the shiznit. I love it.
Posted

For usage try this from command line:

start =>run => type cmd.exe => sc /? ;all about services.

for listing sc query

for stop service syntax: sc stop servicename

for pause sc pause servicename:

for start again service sc start servicename

For execute this command from autoit script:

run("cmd.exe /c sc stop someservice", "", @SW_HIDE)
[size="5"] [/size]

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...