• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Stopping a Service via commandline

Homerboy

Lifer
googled, but still have a question or two...

To stop the service it says:
net stopservice
and it defines service as "Specifies the Name of the service"

so if the name of the service is: MSSQL$ACT, I simply use the following:
 
You can also use 'sc'

sc stop MSSQL$ACT

The nice thing about sc is that you can also control services on remote machines (assuming you have privileges):
sc \\computer stop MSSQL$ACT
 
Originally posted by: nicolas9510
yup, thats it.
course you need a space after stop 🙂

actually that was one of my questions as per that link it shows NO space, which I assumed was simply not right.

Cool this will help circumvent the need to upgrade backup software to something that accommodates SQL back up 🙂

$500 saved!
 
Back
Top