Thanks for the update, and great job getting the HTML5 Web Client installed!
From what you’ve described, you’re able to log in successfully at /RDWeb/Pages
, but login fails at /RDWeb/webclient
using the same credentials. This usually points to a configuration issue specific to the HTML5 client.
In my understanding, The HTML5 Web Client has stricter requirements for authentication and deployment linkage. Even if RDWeb/Pages works, the HTML5 client may reject logins due to:
- Missing or unpublished web client package
- RD Gateway misconfiguration
- User permissions not correctly set
- SSO or credential caching conflicts
- Certificate trust issues
Here are a few things to check to help resolve this:
1. Verify Web Client Is Published
Run:
Get-RDWebClientPackage
If not published:
Publish-RDWebClientPackage -Type Production -Latest
Reference: Set up the Remote Desktop Web Client
2. Use the Correct Login URL
Make sure you're accessing:
https://<YourServerFQDN>/RDWeb/webclient/index.html
Some browsers don’t redirect properly if /index.html
is missing.
3. Check RD Gateway Configuration
The HTML5 client uses RD Gateway for external access. Ensure:
- RD Gateway is enabled and reachable
- Certificate is valid and trusted
- Gateway settings are configured in the deployment
I managed to find this thread with a similar issue, please take a look at the solutions when you have the time: RemoteApp WebClient Launch Failure
4. Review User Permissions
Make sure the user:
- Is part of the Remote Desktop Users group
- Is assigned to the RemoteApp collection
Reference: RDWeb login OK, but RemoteApp says credentials are wrong
5. Check for SSO Conflicts
If SSO is enabled and the user recently changed their password, registry settings like ForceSilentTSAutoLogon
can block login.
Reference: SSO Login Failure Troubleshooting
6. Try a Different Browser or InPrivate Mode
Sometimes cached credentials or certificate trust issues can interfere. Testing in a clean browser session can help isolate the issue.
Let me know what you find after trying these steps. If login still fails, feel free to share any error messages or screenshots, and I’ll help you dig deeper.