I need to write a small console app (patch) that turns off the print spooler service, does a few things, then starts the print spooler service. I'd like to write this in C#. Can someone point me in the right direction? Thanks in advance!
From stackoverflow
-
net start spooler net stop spooler
http://www.tech-recipes.com/rx/864/windows-service-managing-through-command-line/
-
I suspect you use the
ServiceController
class to control (i.e. to stop and start) the service whose name isspooler
.MikeW : Patch complete. Thanks. Your input sent me to the right place! -
You can probably do that using the ServiceController class :
ServiceController controller = new ServiceController("Spooler"); controller.Stop(); ... controller.Start();
MikeW : Thanks. This was exactly what I needed to complete the task.
0 comments:
Post a Comment