Convert my federated identity to standard

Thor Fayad 1 Reputation point
2020-06-29T17:23:40.727+00:00

I setup my tenant with a Lab for federation and now the lab server no longer exists. I need to change my tenant back to standard. I tried to follow this article. https://gallery.technet.microsoft.com/office/Convert-MsolDomain-To-ced5a502

Thanks

Active Directory Federation Services
Active Directory Federation Services
An Active Directory technology that provides single-sign-on functionality by securely sharing digital identity and entitlement rights across security and enterprise boundaries.
1,189 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,455 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Shashi Shailaj 7,581 Reputation points Microsoft Employee
    2020-06-30T16:22:42.723+00:00

    Hello @ThorFayad-9505 ,

    As your server does not exist so you can use the Set-MsolDomainAuthentication cmdlet directly to convert to managed authentication for your domain . You would need to use the Connect-MsolService to connect to the Microsoft Online service before you can run the below command . As you have already run the script that you linked I believe you would have it already setup on your machine. You can change the authentication for the domain to Managed using the following cmdlet .

     PS C:\Users> Set-MsolDomainAuthentication -Authentication Managed -DomainName contoso.com
    
     PS C:\Users> Get-MsolDomain
        
     Name                        Status     Authentication
     ----                        ------     --------------
     xxxxxxt.com                Verified      Managed       
     xxxxxxxe.in                  Verified      Federated     
     xxxxxxxxr.in                Verified       Federated     
     pxxxxxxx.in                 Verified       Managed       
     pxxxxxx.in                  Unverified   Managed       
    

    This should solve your problem. If you still get any error , please let us know and we will help you further. If the information solves your issue , please do accept it as answer so that it helps other community members. If there is something that I have missed , please do let me know in comment and we will be gald to help you further on this . If you have an unrelated issue , please open a new thread and we will help you further.

    Thank you.

    1 person found this answer helpful.
    0 comments No comments