Skip to content

Commit b3a2880

Browse files
committed
fix blocking issues
1 parent 130105b commit b3a2880

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/active-directory/b2b/invite-internal-users.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In these instances, if the internal user must be changed to a B2B user, you shou
4040

4141
**On-premises synced users**: For user accounts that are synced between on-premises and the cloud, the on-premises directory remains the source of authority after they’re invited to use B2B collaboration. Any changes you make to the on-premises account will sync to the cloud account, including disabling or deleting the account. Therefore, you can’t prevent the user from signing into their on-premises account while retaining their cloud account by simply deleting the on-premises account. Instead, you can set the on-premises account password to a random GUID or other unknown value.
4242

43-
## To invite internal users to B2B collaboration
43+
## How to invite internal users to B2B collaboration
4444

4545
You can use PowerShell or the invitation API to send a B2B invitation to the internal user. Make sure the email address you want to use for the invitation is set as the external email address on the internal user object.
4646

@@ -53,7 +53,7 @@ By default, the invitation will send the user an email letting them know they’
5353
> [!NOTE]
5454
> To send your own email or other communication, you can use New-AzureADMSInvitation with -SendInvitationMessage:$false to invite users silently, and then send your own email message to the converted user. See [Azure AD B2B collaboration API and customization](customize-invitation-api.md).
5555
56-
### Use PowerShell to send a B2B invitation
56+
## Use PowerShell to send a B2B invitation
5757

5858
Use the following command to invite the user to B2B collaboration:
5959

@@ -65,7 +65,7 @@ $msGraphUser = New-Object Microsoft.Open.MSGraph.Model.User -ArgumentList $ADGra
6565
New-AzureADMSInvitation -InvitedUserEmailAddress <<external email>> -SendInvitationMessage $True -InviteRedirectUrl "http://myapps.microsoft.com" -InvitedUser $msGraphUser
6666
```
6767

68-
### Use the invitation API to send a B2B invitation
68+
## Use the invitation API to send a B2B invitation
6969

7070
The sample below illustrates how to call the invitation API to invite an internal user as a B2B user.
7171

@@ -94,3 +94,7 @@ ContentType: application/json
9494
```
9595

9696
The response to the API is the same response you get when you invite a new guest user to the directory.
97+
98+
## Next steps
99+
100+
- [B2B collaboration invitation redemption](redemption-experience.md)

0 commit comments

Comments
 (0)