Azure Active Directory – Invite external user without sending email

Posted: May 15, 2019 in Azure, Scripts

Recently i had request to invite external user to Azure Application but not to send invitation to user email address

Open Powershell:

Connect-AzureAD -credential

New-AzureADMSInvitation -InvitedUserEmailAddress "user@example.com" -SendInvitationMessage $false -InvitedUserType "Member" -inviteRedirectUrl "https://application.com"

 

InvitedUserType: Member or Guest

 

 

Then copy InviteReedemUrl and send it to requester

Capture

 

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s