• 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/starting print services from command line (win2k)

Farley2k

Senior member
Our print server is being flakey lately and looses all the printers. The quick fix for this is to go into services stop (if running usually they are down) Print Spooler, TCP/IP Print Sever, and Print Server for MAC - then restarting all three services. Not elegant but it works.

Anyway I want to setup a .cmd which will do those things rather than have to go to services, right click...blah, blah, blah.

I have the easy part

[stopping]
net stop spooler /y

[starting]
net start spooler /y


However I am wondering what the names of TCP/IP Print Server and Print Server for MAC are in the command line world. After all in the services list "spooler" is "Print Spooler" so I assume the others are similarly shortened.

Stopping spooler will stop the other two but I doubt starting it again will restart them. So does anyone know what the names are so I can write

net start "TCP/IP Print Server" and
net start "Print Server for Macintosh"?


Thanks
 
Great idea! Oddly enough they seemed to be named exactly as they appear in the services panel.

Now I should have a .cmd which will stop and start the print services! All I have to do is wait for them to crash again....
 
Back
Top