tal ormanda Posted July 2, 2008 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?
Tarun Posted July 2, 2008 Posted July 2, 2008 net stop servicenet start serviceVerified by: WindowsITProFound by: Google
CoffeeFiend Posted July 2, 2008 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
tal ormanda Posted July 2, 2008 Author 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
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