YeOldeStonecat
Well-Known Member
- Reaction score
- 6,998
- Location
- Englewood Florida
Onboarding a new big electrical contractor...their prior IT guy had them setup with GoDaddy for 365. Ugh.
Oversubscribed just a couple of Biz Std licenses to different users...with those other users being on essentials licenses.
Also essentials licenses for email archives for each user... //huh?
GoDaddy never setup the DKIM or DMARC records, plus left all of the webmail, mail, pop, smtp, imap records for secureserver.net
The usual steps setup by Nick from TMinus that many people followed for years, Powershell ....changed a bit since those prior languages depreciated. Need to do in Powershell via Graph now.
Link to latest way...
blog.cloudcapsule.io
I ended up still having weird errors doing the above copy/paste....doing some Google Fu...CoPilot led me to just 4x lines...
...Launch PowerShell as admin
Install-Module Microsoft.Graph.Identity.DirectoryManagement -Force
Connect-MGGraph -Scopes "Domain.ReadWrite.All", "Directory.AccessAsUser.All"
Get-MgDomain | Select Id, AuthenticationType
Update-MgDomain -DomainId "yourdomain.com" -Authentication Managed
...(in last line above, replace YOURDOMAIN.COM with actual domain...keep within the quotes)
*************************
After the commands above have been run (you can confirm that the domain was defederated by running Get-MgDomain | Select Id, AuthenticationType and looking at the output)....the next steps are to wait for the process to cook. Eventually admin web pages will be able to be opened up. You were always able to get into portal.azure.com but now you can get to all the normal ones, admin.microsoft.com, Defender portal, Intune portal, Exchange, etc etc.
User accounts must have their passwords changed. From the admin side, you CAN go in and just paste in their prior passwords if you're happy with them. Else take this as a chance to make users password more complex. If they try to log in, they will be presented with a password change page. But you can over rule that from the admin side so I document users credentials before doing the defed steps.
Some computers may require signing out of office apps and back in again. More likely if you're doing license upgrades too. But quick enough to settle in.
Oversubscribed just a couple of Biz Std licenses to different users...with those other users being on essentials licenses.
Also essentials licenses for email archives for each user... //huh?
GoDaddy never setup the DKIM or DMARC records, plus left all of the webmail, mail, pop, smtp, imap records for secureserver.net
The usual steps setup by Nick from TMinus that many people followed for years, Powershell ....changed a bit since those prior languages depreciated. Need to do in Powershell via Graph now.
Link to latest way...
Defederating GoDaddy 365
Learn how to seamlessly defederate your Microsoft 365 tenant from GoDaddy in 10 minutes, gaining greater control over security and integrations.
I ended up still having weird errors doing the above copy/paste....doing some Google Fu...CoPilot led me to just 4x lines...
...Launch PowerShell as admin
Install-Module Microsoft.Graph.Identity.DirectoryManagement -Force
Connect-MGGraph -Scopes "Domain.ReadWrite.All", "Directory.AccessAsUser.All"
Get-MgDomain | Select Id, AuthenticationType
Update-MgDomain -DomainId "yourdomain.com" -Authentication Managed
...(in last line above, replace YOURDOMAIN.COM with actual domain...keep within the quotes)
*************************
After the commands above have been run (you can confirm that the domain was defederated by running Get-MgDomain | Select Id, AuthenticationType and looking at the output)....the next steps are to wait for the process to cook. Eventually admin web pages will be able to be opened up. You were always able to get into portal.azure.com but now you can get to all the normal ones, admin.microsoft.com, Defender portal, Intune portal, Exchange, etc etc.
User accounts must have their passwords changed. From the admin side, you CAN go in and just paste in their prior passwords if you're happy with them. Else take this as a chance to make users password more complex. If they try to log in, they will be presented with a password change page. But you can over rule that from the admin side so I document users credentials before doing the defed steps.
Some computers may require signing out of office apps and back in again. More likely if you're doing license upgrades too. But quick enough to settle in.
Last edited:
