Changes

Enabling / disabling Windows services

545 bytes added, 15:29, 7 November 2006
m
no edit summary
You can use WPKG to start, stop or restart services running on your Windows workstations.

To do it, simply use a <code>net</code> command.

The following example will restart a service:

net stop <service_name>
net start <service_name>


Other possibilities are pausing the service:

net pause <service_name>


And continuing a service that was earlier paused:

net continue <service_name>


To list all services that are currently running use <code>net start</code> without parameters:

net start


[[Category: Changing Windows settings]]