123
Senior Member
The "SC" command is the Service Controller and it allows you to manage Windows Services from the command line. In Windows, start the Command Prompt and type SC to get a full listing of what it can do.
Premise runs as a Windows Service and its name is "prkernel.exe". Here's how you'd start and stop the prkernel service:
sc start prkernel
sc stop prkernel
Have you ever uninstalled a Windows Service only to discover that it remains visible in the Services applet? For whatever reason, the uninstall process failed to clean up the Registry. Here's how to rid the Registry of a leftover Service called "zombie":
sc delete zombie
Premise runs as a Windows Service and its name is "prkernel.exe". Here's how you'd start and stop the prkernel service:
sc start prkernel
sc stop prkernel
Have you ever uninstalled a Windows Service only to discover that it remains visible in the Services applet? For whatever reason, the uninstall process failed to clean up the Registry. Here's how to rid the Registry of a leftover Service called "zombie":
sc delete zombie