Using the registry editor to change the service state
31 December 2003 by Snakefoot | Comment » | Trackback Off- Start the Registry Editor by pressing the Start-button and Run... this command:
Regedit
- Browse through the left tree to where Services are found:
[HKEY_LOCAL_MACHINE \System \CurrentControlSet \Services]

- Within the Services-key find go to the short-name of the wanted service (Here RpcSS aka. Remote Procedure Call (RPC)):
[HKEY_LOCAL_MACHINE \System \CurrentControlSet \Services \RpcSS]

- Double-Click the Start-value in the list to the right.

- Change Value data: to the wanted state:
- 0 = Boot
- 1 = System
- 2 = Automatic
- 3 = Manual
- 4 = Disabled
- Press Ok and exit the Registry Editor.
- If setting a service to Disabled or Manual, then execute this command to stop the service:
Net Stop RpcSS
- If setting the service to Automatic, then execute this command to start the service:
Net Start RpcSS
Note the "Automatic" startup mode was extended with "Automatic (Delayed Start)" with Windows Vista/2008. It specifies that the service startup can be delayed until after having performed user logon. It can be activated with the following DWORD registry setting:
Note the "Manual" startup mode was extended with "Manual (Trigger Start)" with Windows 7/2008 R2. It specifies that the service startup can be delayed until a certain event occurs (or be stopped). See what service trigger events that are configured for a service with this command:[HKEY_LOCAL_MACHINE \System \CurrentControlSet \Services \BITS]
DelayedAutoStart = 1
Start = 2
sc qtriggerinfo w32time
More Info MS KB Q103000
More Info MS KB Q271362
More Info MS KB Q838428 (About hardware profiles)
1f8d
Tags:
Category:
Updated: 12 December 2012
Comment by Arun - 20 September 2008 @ 10:52 Reply
nice