Hello VanWyhe,
Thank you for posting question on Microsoft Windows Forum.
Based on the provided error 0x800706d9, especially when an RPC (Remote Procedure Call) service is involved in a process like certificate installation, it might indicate that the Windows Firewall service is stopped or disabled.
The following are some suggestions to deal with this error.
1.Check Key Windows Services.
- Press Windows key + R, type services.msc, and press Enter.
- Find each of the following services in the list to check if its startup and status is running. If not, set them to running status.
- Windows Firewall service (may be named Windows Defender Firewall) - Should be Running and Automatic.
-
- Remote Procedure Call (RPC) - Should be Running and Automatic.
- RPC Endpoint Mapper - Should be Running and Automatic.
- Cryptographic Services - Should be Running and Automatic.
- CNG Key Isolation (related to Cryptography Next Generation/Key Storage) - Should be Running and Manual.
2.Test RPC endpoint mapper (port 135) locally and to the target (if remote).
- Run the following Powershell Command.
- Test-NetConnection -ComputerName localhost -Port 135
- Then against a domain controller or remote host (replace <dc-or-server>) with below Powershell command.
- Test-NetConnection -ComputerName <dc-or-server> -Port 135
- If the test fails (no listener or blocked), the endpoint mapper is not reachable and that explains the error.
- For more information https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/replication-error-1753-there-are-no-more-endpoints-available-from-the-endpoint-mapper
You can refer to below article for more information regarding the issue.
Hope the above information is helpful!