After upgrading to Windows 11 22H2 or newer, network printers vanish and you get "Operation could not be completed (error 0x00000709)" when trying to add them. This also affects 23H2, 24H2, and 25H2.
Microsoft changed the default RPC connection method from named pipes to TCP, which broke shared printer discovery in most environments.
The Quick Fix
Run this in an elevated Command Prompt or PowerShell:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Printers\RPC" /v RpcUseNamedPipeProtocol /t REG_DWORD /d 1 /f
net stop spooler && net start spoolerIf the Printers\RPC key doesn't exist, the command creates it.
For shared printers: Apply this fix on BOTH the computer sharing the printer AND the computer trying to connect. This is the most common reason the fix "doesn't work."
Group Policy Method (Pro/Enterprise)
For domain environments or if you prefer Group Policy:
- Open
gpedit.msc - Navigate to: Computer Configuration > Administrative Templates > Printers
- Open "Configure RPC connection settings"
- Set to: Enabled
- Protocol: RPC over Named Pipes
- Click OK and run
gpupdate /force
If the Fix Doesn't Work
Still seeing 0x00000709? Try these additional steps:
Relax RPC authentication (shared printer environments):
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Print" /v RpcAuthnLevelPrivacyEnabled /t REG_DWORD /d 0 /f
net stop spooler && net start spoolerApply this on both the host and client machines.
Clear stuck print jobs:
net stop spooler
del /F /Q %systemroot%\System32\spool\PRINTERS\*
net start spoolerVerify registry permissions:
- Open
regedit - Navigate to
HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows - Right-click "Windows" > Permissions
- Ensure your user account has Full Control
Verify the Fix
Get-Printer -Name "\\SERVER\PrinterName"The printer should now appear without the 0x00000709 error.
Why This Happens
Starting with Windows 11 22H2, Microsoft enabled stricter RPC security (CVE-2021-1678 mitigation). The default changed from RPC over Named Pipes to RPC over TCP. Most existing shared printer setups rely on named pipes, so this breaks printer discovery and authentication.
The registry fix forces Windows back to the compatible protocol.
FAQ
Does this work on Windows 11 Home?
Yes. Windows 11 Home doesn't have Group Policy Editor, but the registry commands work identically.
Do I need to restart after the fix?
Restarting the Print Spooler service is usually enough (net stop spooler && net start spooler). A full reboot works too.
Does this affect local USB printers?
No. USB printers don't use RPC networking. This fix only applies to network and shared printers.
The fix worked but printers disappeared again after a Windows Update.
Some cumulative updates reset the RPC settings. Re-run the registry command after major updates if printers stop working.
Related Reading
Need hands-on help? Contact RainCity Techworks.