Windows Service for Remote Regedit Access

To connect to a target machine’s registry remotely using the Windows Registry Editor (Regedit), the Remote Registry service must be running on the target system. By default, this service is disabled or set to manual startup on modern versions of Windows for security purposes. Enabling it allows authorized administrators to view and modify registry settings across a local network.

Required Service Details

How to Enable the Remote Registry Service

You can enable and start the Remote Registry service on the target machine using any of the following methods:

Method 1: Windows Services Console (GUI)

  1. Press Win + R, type services.msc, and press Enter.
  2. Scroll down and locate Remote Registry.
  3. Right-click the service and select Properties.
  4. Change the Startup type to Automatic or Manual.
  5. Click the Start button under Service status, then click Apply and OK.

Method 2: Command Prompt (Admin)

Run the following commands to configure and start the service:

sc config RemoteRegistry start= auto
net start RemoteRegistry

Method 3: PowerShell (Admin)

Run the following command to set the startup type and start the service:

Set-Service -Name RemoteRegistry -StartupType Automatic
Start-Service -Name RemoteRegistry

Additional Prerequisites for Remote Connection

In addition to running the Remote Registry service, the following conditions must be met to establish a connection:

Connecting via Regedit

  1. Open Registry Editor (regedit.exe) on your local machine.
  2. Click File in the top menu and select Connect Network Registry….
  3. Enter the object name or IP address of the target computer and click OK.
  4. Provide administrative credentials if prompted. Once authenticated, the target machine’s HKEY_LOCAL_MACHINE and HKEY_USERS hives will appear in the navigation pane.