Hello,
From what you’ve described, the fact that you can connect to the Windows Server 2022 instance from your iPad but not from either of your Windows laptops points to a client‑side issue with MSTSC (the native Remote Desktop client) rather than a server configuration problem. Since you’ve already confirmed that RDP is enabled, the firewall is open, and the server is listening on TCP/3389, the next step is to focus on the Windows client stack.
On Windows 10 Home, note that while you cannot host RDP sessions, you can still use MSTSC to connect to remote servers. The failure you’re seeing is usually tied to one of two things: TLS negotiation or credential format. Windows Server 2022 enforces NLA (Network Level Authentication) by default. If your MSTSC client is outdated or if CredSSP policies are misaligned, the connection will fail even though the credentials are correct. Make sure your Windows 10 Home and Windows 11 Pro machines are fully patched, especially with the latest Remote Desktop client updates. Then, when entering credentials, use the format DOMAIN\username or server-ip\localuser depending on whether the account is domain‑joined or local. If you’re using a local account on the server, the correct format is .\username.
Another common cause is certificate validation. The iPad client ignores certain certificate warnings, but MSTSC enforces them. If the server’s RDP certificate is self‑signed, MSTSC may reject the connection. You can test this by running mstsc /admin /v:server-ip and seeing if you get a certificate prompt. If so, accept the certificate or install a proper one via Group Policy under Computer Configuration > Administrative Templates > Windows Components > Remote Desktop Services > Remote Desktop Session Host > Security.
Finally, check the server’s Group Policy for RDP security settings. If “Require use of specific security layer for remote (RDP) connections” is set to SSL (TLS), try switching it to “Negotiate” so the client can fall back to RDP security if TLS fails. This is under gpedit.msc at Computer Configuration > Administrative Templates > Windows Components > Remote Desktop Services > Remote Desktop Session Host > Security.
In short, the server is fine since the iPad connects. The Windows clients are failing due to NLA/TLS or credential formatting. Updating the MSTSC client, verifying the credential syntax, and adjusting the RDP security layer should resolve the issue.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
Domic Vo.