Forum Discussion
SSO back to Standard Authentication
An update, the Office 365 support tech is refusing to help me setup my Office 365 Tenant to using Standard Authentication. He gave me a phone number for the general Microsoft Customer Support!
I'm now trying to open another ticket.
- VasilMichevMar 30, 2018MVP
The cmdlets you pointed above are indeed intended to be used from the On-Prem AD FS server. For other federated providers, use the following
1) Get the domain info
Get-MsolDomainFederationSettings -DomainName sts.domain.com
2) Change the domain auth type
Set-MsolDomainAuthentication -DomainName sts.domain.com -Authentication Managed
3) If you need to configure/change the actual federation settings
Set-MsolDomainFederationSettings -DomainName blabla ....
- C_the_SApr 16, 2018Bronze Contributor
I performed this operation this past weekend and it worked without a hitch.
Unfortunately, Microsoft support refused any support what so ever so I'm glad this resource (Tech Community) is here to get answers when they fail to come through. Thanks!
- VasilMichevApr 16, 2018MVP
Yup, that's the power of community :)
- C_the_SMar 30, 2018Bronze Contributor
Ok thanks I'll give it a go.