Jump to content

HOW TO Start and Stop services


name15
 Share

Recommended Posts

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.
Link to comment
Share on other sites

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]
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...