Fix 0X00000A4F: Vendor name in use by another record
This error pops up when adding a vendor name that's already tied to another record. We'll clear the conflict in three steps, starting with the quickest.
What's happening here
You're seeing 0X00000A4F with the message "Vendor name is in use by some other vendor record". That's a Windows networking error from the Remote Boot service (NERR_RplVendorNameUnavailable). It means the vendor name you're trying to add—like "Intel" or "Realtek"—is already assigned to another record in the Remote Program Load (RPL) database.
This usually shows up when you're setting up or managing network boot services on an older Windows Server (2003, 2008, or even 2012 with legacy RPL). Maybe you're adding a new network card vendor, or you imported a config file that doubled up a vendor name. The fix is straightforward, but you gotta be careful—messing up the RPL database can break network booting for your clients.
Before you start
You'll need admin rights on the machine. If you're on a Domain Controller, run everything as Domain Admin. I'm assuming you're on Windows Server, but the same error can hit on Windows 10/11 if you've got the RPL service running for old-school network boot.
Fix 1: The 30-second check—RPL Manager GUI
This is the easiest and safest. It works 80% of the time.
- Open RPL Manager. You'll find it in
Administrative Toolsor runrplmgr.exefrom a command prompt. - Click the View menu and select Vendors.
- Look through the list for the vendor name you're trying to add—say, "Dell" or "IBM".
- If you see it already there, double-click it, then check if it has any Profiles listed. If the vendor has no profiles, you can delete it safely. Right-click the vendor and choose Delete.
- If the vendor has profiles, you can't just delete it. You'll need to either rename the existing vendor or use a different name for your new one.
- After deleting or renaming, try adding your vendor again. It should go through now.
Expected outcome: After you delete the duplicate vendor entry, you should be able to add it fresh without seeing the error. If you're still stuck, move to Fix 2.
Fix 2: The 5-minute registry edit
If the GUI didn't show the duplicate, the vendor name might be buried in the registry. This is where RPL stores its data, and sometimes the Manager doesn't refresh properly.
Warning: Editing the registry wrong can mess up your system. Back it up first. I've seen admins delete the wrong key and kill network boot for days.
- Press Windows + R, type
regedit, and hit Enter. - Go to this key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Rpl\RplBoot\Vendors - You'll see a list of subkeys—each one is a vendor name in hex format. For example,
0000might be "Intel",0001might be "Realtek", etc. - Look at the VendorName string value inside each subkey. Find the one that matches your error—e.g., "3Com".
- If there are two subkeys with the same VendorName, you've found the problem. Right-click the duplicate subkey and choose Delete. Usually, keep the one with the lower hex number (it's the original).
- Close Regedit. No need to reboot—RPL Manager picks up changes live.
- Go back to RPL Manager and try adding the vendor again.
Expected outcome: After removing the duplicate registry key, the error should vanish. If it still doesn't work, you've got a corrupt RPL database—that's Fix 3.
Fix 3: The 15+ minute advanced fix—rebuild the RPL database
This is the nuclear option. Only do this if Fix 1 and Fix 2 didn't work. It wipes the RPL configuration and forces a fresh rebuild from the system's network adapters.
- Open an elevated command prompt (Run as Administrator).
- Stop the RPL service:
net stop rpl - Rename the current RPL database folder so you can restore it if needed:
ren C:\Windows\System32\Rpl Rpl.old
(Path might vary—checkHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Rpl\Parameters\DatabasePathfor the exact location.) - Start the RPL service again:
net start rpl - The service will create a fresh, empty database. Now you need to re-add your vendor entries. Open RPL Manager.
- Go to View > Vendors. The list should be empty. Add your vendor name now—it should work without the error.
- Re-add any profiles, boot blocks, and client records you need. This is the tedious part—you'll have to manually re-enter everything.
Expected outcome: A clean RPL database with no duplicates. The vendor name error should be gone for good.
One more thing—check for read-only RPL files
This is rare but I've seen it. If the RPL directory or its subfolders are marked read-only, the Manager can't save new vendors. Right-click the C:\Windows\System32\Rpl folder, go to Properties > General, and uncheck Read-only. Click Apply, then try again.
That's it. You should be back in business. If not, you might be dealing with a corrupted OS install—try a repair install of Windows or restore from a backup of the RPL database you made in Fix 3.
Was this solution helpful?