tal ormanda Posted July 2, 2008 Share Posted July 2, 2008 Can someone tell me how I can stop a service running with the command line. Then another command to start it back up? Link to comment Share on other sites More sharing options...
Tarun Posted July 2, 2008 Share Posted July 2, 2008 net stop servicenet start serviceVerified by: WindowsITProFound by: Google Link to comment Share on other sites More sharing options...
CoffeeFiend Posted July 2, 2008 Share Posted July 2, 2008 There's also the sc.exe command line util:sc start servicenameandsc stop servicenameas well as the new console (PowerShell), which also has simple commands build in for this:Stop-Service servicenameandStart-Service servicename Link to comment Share on other sites More sharing options...
tal ormanda Posted July 2, 2008 Author Share Posted July 2, 2008 (edited) Thank you I knew it was net ___ but your article made me realize I needed to type net start "HERE". The quotes... Edited July 2, 2008 by tal ormanda Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now