Enable Remote Registry from Command Line

This is how I enable the Remote Registry on local system or remote system from the command line in Windows 7 and/or Windows XP.
sc start RemoteRegistry
To enable it to start automatically (default manual startup)
sc config RemoteRegistry start= auto
Note:  There is a space required between start= and auto.
To do this on a remote system, use the following syntax:
sc TestComputer start RemoteRegistry
sc TestComputer config RemoteRegistry start= auto
You can configure the service start-up type from the command line and here are the options:

Service Start-up Type Options
auto a service automatically started at boot time, even if no user logs on
boot a device driver loaded by the boot loader
demand a service that must be manually started (the default)
disabled a service that can’t be started
system a service started during kernel initialization

 

Published by

Rich

Just another IT guy.

3 thoughts on “Enable Remote Registry from Command Line”

  1. Great post! This came in handy working from home and trying to enable remote registry on my computer in the office. Please note you have to put a in front of the server name.

    1. Hi John,
      Glad it worked and thanks for spotting the issue with the command syntax. WordPress hacks my slashes quite often! I have put them back into the post so it should be correct now. Thanks again!

Leave a Reply to Rich Kreider Cancel reply

Your email address will not be published. Required fields are marked *