Dear sara rashid,
To determine whether the current Remote Desktop certificate is the default self‑signed one or issued by your internal CA, open the Certificates MMC on the Windows Server 2016 VM and check under Computer → Remote Desktop → Certificates. The default self‑signed RDP certificate will show “Issued To” and “Issued By” as the server’s own hostname, with a validity of one year. If it is CA‑issued, the “Issued By” field will reference your internal CA and the trust chain will validate against Trusted Root Certification Authorities. The warning you observed confirms that the root CA is not present in the trusted root store, which is why the certificate is not trusted.
The recommended process is to generate a certificate request (CSR) per VM using its fully qualified domain name, submit it to your internal CA, and then install the issued certificate into the local computer’s personal store. Once imported, bind it to RDP by running Set-RDCertificate -Role RDGateway -Thumbprint <certthumbprint> or using the Remote Desktop Deployment Properties in Server Manager. Each VM should have its own certificate matching its FQDN to avoid validation errors. CSR generation can be done with the Certificates MMC or PowerShell (New-SelfSignedCertificate for testing, or certreq for CA submission).
If my answer is useful for you, please hit Accept the answer to support me.
Thank you,
QQ.