Wednesday 18 July 2018

How to add a guest user in Azure active directory/portal

  1. Sign in to the Azure portal as an Azure AD administrator.
  2. In the navigation pane, select Azure Active Directory.
  3. Under Manage, select Users.
  4. Select New guest user.
    Shows where New guest user is in the UI
  5. Under User name, enter the email address of the external user. Optionally, include a welcome message. For example:
    Shows where New guest user is in the UI
  6. Select Invite to automatically send the invitation to the guest user.
After you send the invitation, the user account is automatically added to the directory as a guest.
Shows B2B user with Guest user type

Add guest users to a group

If you need to manually add B2B collaboration users to a group as an Azure AD administrator, follow these steps:
  1. Sign in to the Azure portal as an Azure AD administrator.
  2. In the navigation pane, select Azure Active Directory.
  3. Under Manage, select Groups.
  4. Select a group (or click New group to create a new one). It's a good idea to include in the group description that the group contains B2B guest users.
  5. Select Members.
  6. Do one of the following:
    • If the guest user already exists in the directory, search for the B2B user. Select the user, and then click Select to add the user to the group.
    • If the guest user does not already exist in the directory, invite them to the group by typing their email address in the search box, typing an optional personal message, and then clicking Select. The invitation automatically goes out to the invited user.
      Add invite button to add guest members

Add guest users to an application

To add B2B collaboration users to an application as an Azure AD administrator, follow these steps:
  1. Sign in to the Azure portal as an Azure AD administrator.
  2. In the navigation pane, select Azure Active Directory.
  3. Under Manage, select Enterprise applications > All applications.
  4. Select the application to which you want to add guest users.
  5. On the application's dashboard, select Total Users to open the Users and groups pane.
    Total Users button to add open Users and Groups
  6. Select Add user.
  7. Under Add Assignment, select User and groups.
  8. Do one of the following:
    • If the guest user already exists in the directory, search for the B2B user. Select the user, click Select, and then click Assign to add the user to the app.
    • If the guest user does not already exist in the directory, select Invite.
      Add invite button to add guest members
      Under Invite a guest, enter the email address, type an optional personal message, and then select Invite. Click Select, and then click Assign to add the user to the app. An invitation automatically goes out to the invited user.
  9. The guest user appears in the application's Users and groups list with the assigned role of Default Access. If you want to change the role, do the following:
    • Select the guest user, and then select Edit.
    • Under Edit Assignment, click Select Role, and select the role you want to assign to the selected user.
    • Click Select.
    • Click Assign.

Resend invitations to guest users

If a guest user has not yet redeemed their invitation, you can resend the invitation email.
  1. Sign in to the Azure portal as an Azure AD administrator.
  2. In the navigation pane, select Azure Active Directory.
  3. Under Manage, select Users.
  4. Select the user account.
  5. Under Manage, select Profile.
  6. If the user has not yet accepted the invitation, a Resend invitation option is available. Select this button to resend.
    Resend invitation option in the user profile

No comments:

Post a Comment

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...