This question focuses on creating guest user accounts (B2B users) in Azure Active Directory (Microsoft Entra ID) using bulk operations. The requirement is to import 500 external users from a CSV file and invite them as guest users into the tenant contoso.com.
???? Understanding the Goal
You must create guest accounts (B2B collaboration users) — not regular internal users.
Guest accounts in Azure AD have:
UserType = Guest
Their identity originates from an external organization (using their own email domain).
They are invited via B2B invitations.
The key operation used to accomplish this is Bulk invite users, not Bulk create users.
???? Why “Bulk Create Users” Does NOT Meet the Goal
The Bulk create users operation in the Azure portal is used for adding internal users to the directory (i.e., users who belong to the same Azure AD tenant).
It creates standard member accounts, not guest accounts.
It cannot send invitations to external users or create guest-type identities (UserType = Guest).
In contrast:
The Bulk invite users operation imports external user data from a CSV file and automatically sends invitations to the listed email addresses.
It creates user objects with UserType = Guest in Azure AD, meeting the scenario’s goal.
Hence, the Bulk create user method fails to create guest users and does not meet the goal.
???? Correct Method (for Reference)
From Microsoft Entra ID → Users → Bulk operations → Bulk invite, you can:
Download a CSV template.
Fill in external users’ names and email addresses.
Upload the CSV file.
Azure AD then creates guest user accounts and sends invitations to join the directory.
This is the only correct approach for mass-adding external (guest) users.
???? Verified Documentation Extract (Microsoft Learn)
“The Bulk invite operation in Azure AD allows administrators to invite multiple external users at once by uploading a CSV file. Bulk create operation, on the other hand, is for adding internal users to your organization’s directory.”
(Source: Microsoft Learn — Invite external users in bulk to Microsoft Entra ID, AZ-104 Study Guide)
✅ Final Verified Answer:
B. No
Using the Bulk create users operation adds internal member accounts, not external guest accounts. To create guest accounts, the correct action is to use the Bulk invite users operation in Azure AD.