Forum Discussion
Authentication popup for autologon.microsoftazuread-sso.com:443
aleks_m We are also experiencing this same issue. Only difference is that after we close this screen:
and then close teams completely and try to reopen Teams we get this page:
Still have not found a way to bypass this issue...
I've had success adding this to our Trusted sites - seems to fix all our devices so far. If you have alot of devices to touch maybe Group Policy or the Powershell below would add this for you
#AutoLogon URL to IE11 TRUSTED SITES (VALUE 1 = LOCAL VALUE 2 = TRUSTED SITES
$TestRegistry = Test-Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\autologon.microsoftazuread-sso.com"
if ($TestRegistry -eq $true) {Write-Host 'https://autologon.microsoftazuread-sso.com is in Trusted Sites!' -ForegroundColor Green}
if ($TestRegistry -eq $false) {
Set-Location "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
Set-Location ZoneMap\Domains
New-Item autologon.microsoftazuread-sso.com
Set-Location autologon.microsoftazuread-sso.com
New-ItemProperty . -Name https -Value 2 -Type DWORD
}
- Michael_PoutreJan 13, 2020Copper Contributor
Ben KeithI'm not too sure how big, if any, of a difference it makes. But when adding the value manually via the Internet Explorer settings on Windows Server 2016 the subdomain is a nested key:
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\microsoftazuread-sso.com\autologon
- PaigeCook1900Jan 10, 2020Copper Contributor
Ben Keith Thanks! This worked for me.
- Abhishek_kum1Jan 08, 2020Brass Contributor
HelloBen Keith,
Getting the same Authentication issue, but once we close the pop-up it is not re-appearing and everything is working fine. This authentication only pops up once when we start Microsoft Teams.
Added https://autologon.microsoftazuread-sso.com to the trusted sites, still facing the same issue.
Any idea on whats going wrong?
Thanks!
- SobiesiJan 14, 2020Copper Contributor
I'm facing the same issue and after digging to internet I find this article: https://docs.microsoft.com/pl-pl/azure/active-directory/hybrid/how-to-connect-sso-quick-start
Here you can find that value for a reg key should be "1" instead of "2" that was posted before.
You need to change value from registry: Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\microsoftazuread-sso.com\autologon
key "https" Dword value should be set to "1".
This one helped me so please check it.
- jpaguilaMar 29, 2020Copper ContributorThanks, this workout perfectly for me.