A cloud-based identity and access management service for securing user authentication and resource access
To connect from a local user computer to an AzureAD joined computer using Remote Desktop Protocol (RDP), ensure the following steps are followed:
- User Credentials: When prompted for credentials, use the format
******@domain.comfor the username. Avoid using theAzureAD\prefix, as this may lead to authentication issues. - Network Configuration: Ensure both the local computer and the AzureAD joined computer are on the same network and that the AzureAD joined computer is configured to allow remote connections.
- Remote Desktop Users Group: Verify that the user account is added to the Remote Desktop Users group on the AzureAD joined computer. You can add users manually using the command:
Replacenet localgroup "Remote Desktop Users" /add "AzureAD\<userUPN>"<userUPN>with the user's UPN (e.g.,******@domain.com). You need to be a member of the local Administrators group to execute this command. - RDP Settings: Ensure that the Remote Desktop settings on the AzureAD joined computer allow connections from the local user. Check that Network Level Authentication (NLA) is configured correctly, as it may affect the ability to connect.
- Testing Connectivity: If you continue to have issues, test connectivity using the
Test-NetConnectioncmdlet in PowerShell to ensure that the RDP port (default is 3389) is open and accessible.
If these steps do not resolve the issue, further troubleshooting may be required, focusing on network settings and firewall configurations.
References: