Fix error 0X00000A3F RplConfigInfoCorrupted on Windows
This error means a Remote Boot configuration record is broken. Start with the quick fix below—most people fix it in under a minute.
Before you start
This error usually appears on older Windows machines (Windows 7, 8, 10) when you try to boot from a network. The error code 0X00000A3F means the Remote Program Load (RPL) config record is corrupted. This can happen after a bad Windows update, a power outage during boot, or if someone messed with the network settings manually.
The good news: you can fix this without reinstalling Windows. Follow the steps in order. Stop when the error is gone.
Fix 1: Quick check (30 seconds)
This is the simplest thing. No tools needed.
- Restart your computer. Wait for it to fully boot into Windows.
- Press the Windows key and type
Command Prompt. - Right-click Command Prompt and select Run as administrator.
- In the black window, type this and press Enter:
sfc /scannow - Wait for the scan to finish. It checks system files. If it finds errors, it fixes them automatically.
- Restart again. See if the error is gone.
What to expect: The scan takes 5-10 minutes. After restart, if the error doesn't show, you're done. If it still appears, move to Fix 2.
Fix 2: Reset the Remote Boot configuration (5 minutes)
This fix clears the corrupted RPL config using the registry. It's safe, but we'll back it up first.
- Press Windows + R, type
regedit, and press Enter. - In the Registry Editor, click File > Export. Save the backup somewhere (like your desktop) with a name like
backup-before-fix. - Now go to this path in the left panel:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteBoot - If you don't see RemoteBoot, skip to Fix 3. If you see it, click it.
- In the right panel, look for a value named
ConfigRecord. Right-click it and select Delete. - Close Registry Editor.
- Restart your computer.
What to expect: After restart, Windows recreates the config record automatically. The error should be gone. If not, move to Fix 3.
Fix 3: Disable the Remote Boot service (15+ minutes)
If the first two fixes didn't work, the Remote Boot service itself is broken. Disabling it is the cleanest fix.
- Press Windows + R, type
services.msc, and press Enter. - Scroll down to Remote Access Connection Manager. Don't confuse it with something else.
- Right-click it and select Properties.
- In the Startup type dropdown, select Disabled.
- Click Stop if the service is running (you'll see a button).
- Click Apply, then OK.
Now disable the Remote Boot driver too:
- Press Windows + R, type
devmgmt.msc, and press Enter. - Click View > Show hidden devices.
- Expand Non-Plug and Play Drivers.
- Find RemoteBoot.
- Right-click it, select Properties.
- Go to the Driver tab, click Stop, then set Startup type to Disabled.
- Click OK.
- Restart your computer.
What to expect: After restart, the Remote Boot service won't load. The error 0X00000A3F shouldn't appear anymore. If you later need Remote Boot (unlikely for most people), you can re-enable it using the same steps but choosing Automatic.
What if none of these work?
If the error still shows up after all three fixes, try a System Restore to a point before the error started. Here's how:
- Press Windows + R, type
rstrui, press Enter. - Select Choose a different restore point, then click Next.
- Pick a date when your PC worked fine.
- Follow the prompts. Your PC restarts.
That's it. Most people fix this with Fix 1 or Fix 2. No need to reinstall Windows.
Was this solution helpful?