Skip to main content

Fix: Printer Error 0x00000bc4 or 0x00000709 in Windows 11 22H2

 Fix: Printer Error 0x00000bc4 or 0x00000709 in Windows 11 22H2


After updating Windows 11 to version 22H2, your network printers may stop working. Also, the error code 0x00000bc4 (Desc: ERROR_PRINTER_NOT_FOUND) or 0x00000709 (Desc: ERROR_INVALID_PRINTER_NAME) appears when adding a new network printer.

Operation could not be completed (error 0x00000bc4).

 

No Printers Were Found.

The printer name is invalid.

Cause

Windows 11 version 22H2 introduced a new group policy named “Configure RPC Connection settings.” This policy setting controls which protocol and protocol settings to use for outgoing RPC connections to a remote print spooler.

The default setting in 22H2 blocks Windows from finding your network printers. This causes your existing printers to be erased, and adding them manually causes the error 0x00000bc4.

Setting “Configure RPC Connection settings” to “RPC over named pipes” fixes the issue.

Solution

To fix the network printer error 0x00000bc4, try these steps:

1.    Launch the Local Group Policy Editor (gpedit.msc)

2.    Go to the following section:

Administrative Templates → Printers → Configure RPC connection settings

3.    Select “RPC over named pipes” from the dropdown, and click OK.




4.    Exit the Group Policy Editor.

 

Comments

Popular posts from this blog

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor Press the Windows logo key + R to open the Run box. Type  regedit  and hit Enter. When the Registry Editor opens, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters In the right pane you can see a string value named  Type . If you want Windows 10 to set time automatically, set its value data to  NTP . To disable automatic time synchronization, change its value to  NoSync . In order to enable or disable “Set Time Zone Automatically” in Windows 10, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tzautoupdate Double-click the 32-bit DWORD “ Start ” in the right pane. Set its value data to 3 if you want to make Windows 10 set time zone automatically. If you want to disable “Set Time Zone Automatically” in Windows 10, just set the value to 4. Reboot your computer for the registry changes to take ...

Find your Window licence key from inside Windows

Entering the following lines into an  admin Command Prompt  or PowerShell worked to display the OEM key embedded in our system's UEFI/BIOS. However, these commands didn't return any keys on other two machines we used for testing despite Windows 10 being activated. wmic path softwarelicensingservice get OA3xOriginalProductKey or powershell "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey" There's also a commonly cited Visual Basic script that retrieves registry-based Windows keys (not those stored in the UEFI/BIOS). You can download the  script here . Copy this text and paste it into Notepad, saving it as a .vbs file. Then double-click to launch the file.