You are getting a "401: Server Error" or a popup login screen
If you are seeing one the below images, the ADFS connection between your organisation and Templafy is configured incorrectly.
Solution
Add "https://sts.yourdomain.com" as a Trusted Local Intranet site in "Internet Options" on the local machines that are experiencing this. The settings you are looking for are shown below and can be added via GPO.
How to add it in your GPO
In your Local Group Policy Editor locate and change the following.
- Administrative Templates -> Windows Components -> Internet Explorer -> Internet Control Panel -> Security Page
- Under "Security page" open "Site to zone Assignment List"
- Change it to "Enabled"
- Click "Show"
- Add "https://sts.yourdomain.com" or "https://*.yourdomain.com" and set "Value" to "1".
- Click "OK"
How to include Google Chrome and other browsers to your ADFS
After adding your ADFS URL to your "Internet Options", you might want to use Chrome to acces https://yourcompanyname.templafy.com.
- Stop all ADFS services via PowerShell
net stop adfssrv
- Confirm that the Browser(s) you want to add are not present
Get-ADFSProperties | Select -ExpandProperty WIASupportedUserAgents
- Add Chrome to the list, along with all the ones already there
Set-ADFSProperties –WIASupportedUserAgents @("MSAuthHost/1.0/In-Domain","MSIE 6.0","MSIE 7.0","MSIE 8.0","MSIE 9.0","MSIE 10.0","Trident/7.0", "MSIPC","Windows Rights Management Client","Mozilla/5.0")
- Confirm that "Mozilla/5.0" is on the list
Get-ADFSProperties | Select -ExpandProperty WIASupportedUserAgents
- Start up the ADFS service again
net start adfssrv
Comments
0 comments
Article is closed for comments.