Office365 dual admin for certain users

Copper Contributor

Hi, recently our finance guy want to make sure their email can't be hack (reset password) by IT guy. Is there any way to archive this as the super admin on our office365 is the IT guy. I'm thinking if there's an option to have 2 admin key to reset certain "vip" users here.

1 Reply
There are relatively few administrative tasks, such as assigning roles to user accounts, that require global administrator privileges. Therefore, instead of using everyday user accounts that have been assigned the global admin role, do these steps:

Determine the set of user accounts that have been assigned the global admin role. You can do this with Azure Active (Azure AD) Directory PowerShell for Graph command:
PowerShell

Copy
Get-AzureADDirectoryRole | where { $_.DisplayName -eq "Company Administrator" } | Get-AzureADDirectoryRoleMember | Ft DisplayName
Sign into your Microsoft 365 subscription with a user account that has been assigned the global admin role.

Create up to a maximum of four dedicated global administrator user accounts. Use strong passwords at least 12 characters long. See Create a strong password for more information. Store the passwords for the new accounts in a secure location.

Assign the global admin role to each of the new dedicated global administrator user accounts.

Sign out of Microsoft 365.

Sign in with one of the new dedicated global administrator user accounts.

For each existing user account that had been assigned the global admin role from step 1:

Remove the global admin role.

Assign admin roles to the account that are appropriate to that user's job function and responsibility. For more information about various admin roles in Microsoft 365, see About admin roles.

Sign out of Microsoft 365.
The result should be:

The only user accounts in your subscription that have the global admin role are the new set of dedicated global administrator accounts. Verify this with the following PowerShell command:

PowerShell

Copy
Get-AzureADDirectoryRole | where { $_.DisplayName -eq "Company Administrator" } | Get-AzureADDirectoryRoleMember | Ft DisplayName
All other everyday user accounts that manage your subscription have admin roles assigned that are associated with their job responsibilities.