Forum Discussion
C_the_S
Mar 29, 2018Bronze Contributor
SSO back to Standard Authentication
I already have a Support ticket open, but the Tech is being no help.
Here's what we want to do. We currently use a 3rd party SSO service and we want to go back to Standard authentication.
Using t...
VasilMichev
MVP
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_S
Mar 30, 2018Bronze Contributor
Ok thanks I'll give it a go.