Share via

Adding a user

Dawn Baker 0 Reputation points
2026-03-16T14:29:14.7133333+00:00

Microsoft is not pulling my current users, nor can I add one. How can I fix?

Microsoft 365 and Office | Subscription, account, billing | For home | Windows
0 comments No comments

2 answers

Sort by: Most helpful
  1. EmilyS726 240.2K Reputation points Independent Advisor
    2026-03-16T15:04:53.4133333+00:00

    Hello,

    You need to tell us - where are you adding a user?

    Are you adding a user for Windows log in purpose?

    Or are you adding a user to share a Microsoft 365 family subscription?

    Please be more specific, provide more context and error message if any.

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-03-16T14:29:31.3833333+00:00

    For home Microsoft 365 accounts, users are managed in the associated Microsoft Entra tenant. If existing users are not appearing and new users cannot be added, use these checks and steps:

    1. Confirm the correct tenant
      • Sign in to the Microsoft 365 portal or Azure portal with the subscription’s Global Administrator account.
      • Verify that the signed-in account and tenant are the ones where the users are expected. If signed into a different tenant, the expected users will not appear.
    2. Check if users exist but are not visible in the current UI
      • In Partner Center scenarios, all Microsoft Entra users automatically appear on the User management page for that tenant.
      • Use the search box to look up the user by full email address or alias.
      • If the user was just added, allow up to one hour for propagation and ensure the user has signed in at least once.
    3. If the user truly does not exist, create the user in Microsoft Entra ID
      • In the Azure portal, sign in as Global Administrator or User Administrator.
      • Go to Microsoft Entra IDUsersNew user.
      • Enter Name, User name, Groups, Directory role, and Job info.
      • Copy the autogenerated password and select Create.
    4. Alternative creation methods (if using admin tools)
      • Azure CLI:
             az ad user create --display-name "<New User>" \
                 --password "xWwvJ]6NMw+bWH-d" \
                 --user-principal-name "<******@contoso.onmicrosoft.com>" \
                 --force-change-password-next-login true \
                 --mail-nickname "<Newuser>"
        
      • Microsoft Graph PowerShell:
             $PasswordProfile = @{ Password = 'xWwvJ]6NMw+bWH-d' }
             Connect-MgGraph -Scopes "User.ReadWrite.All"
             New-MgUser -DisplayName 'Rene Magi' -PasswordProfile $PasswordProfile -AccountEnabled `
               -MailNickName 'ReneMagi' -UserPrincipalName '******@contoso.com'
        
    5. If using a hybrid (on‑premises + cloud) setup
      • New users may need to be created on-premises and then synchronized to Microsoft Entra ID.
      • Ensure directory synchronization is configured and running, and that the OU containing the users is included in sync.
    6. If a specific user name or email cannot be reused
      • The name or email might already exist in the tenant.
      • Use Exchange Online PowerShell to search for existing objects with that email:
             get-mailbox | where {$_.EmailAddresses -match "user name"} | ft Name, RecipientType, EmailAddresses
        
      • Rename or remove the conflicting address, then retry creating or assigning the user.

    If, after these steps, users still do not appear and cannot be added, the issue is likely tenant-specific and may require opening a support ticket through the Microsoft 365 admin center.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.