Adding Azure AD group to local group fails

Tim 96 Reputation points
2021-07-13T17:10:36.147+00:00

The command below fails with error "there is no such global user or group: AzureAd\groupname@keyman .com"

net localgroup administrators "AzureAD\groupname@keyman .com" /Add

I have tried using the SID, no AzureAD, and no domain and all return the same error.

However I can run the same command with a user account and it is successful.

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,664 questions
{count} votes

Accepted answer
  1. Tim 96 Reputation points
    2021-10-11T15:33:06.377+00:00

    The "NET" command seems to be geared more towards AD and using it with AAD produces mixed/unexpected results.

    Solution:

    Create a new Configuration Profile and choose Custom.

    OMA-URI:
    ./Device/Vendor/MSFT/Policy/Config/LocalUsersAndGroups/Configure

    Value:
    <GroupConfiguration>
    <accessgroup desc = "Administrators">
    <group action = "U"/>
    <add member = "AzureAD Group's SID"/>
    </accessgroup>
    </GroupConfiguration>


1 additional answer

Sort by: Most helpful
  1. Marilee Turscak-MSFT 34,306 Reputation points Microsoft Employee
    2021-07-13T20:46:10.8+00:00

    This recommended approach is to sync the local group to Azure AD instead, as Microsoft does not have official guidelines adding groups to a group synced with an on-premises Azure AD.

    https://learn.microsoft.com/azure/active-directory/fundamentals/active-directory-groups-membership-azure-portal

    There is also an open feedback request for this: https://feedback.azure.com/forums/169401-azure-active-directory/suggestions/32804737-ability-to-add-groups-as-additional-local-administ

    That said, this blog post shows how to add an Azure AD group to a local admin group using Intune: https://www.inthecloud247.com/add-an-azure-ad-group-to-the-local-administrators-group-with-microsoft-intune/