User Profile
Corsino
Copper Contributor
Joined 7 years ago
User Widgets
Recent Discussions
Re: How administrator recover password if he is the only admin and Self Service Recover not configured
Try this: If you have a twitter account, go to https://twitter.com/azuresupport and expose your situation. A Data Protection issue is needed. Microsoft will ask you some questions about the GA user.924Views0likes0CommentsRe: Streamlining adding external users to our tenant and as members of a new SharePoint Online portal
Hi Daniel Westerdale, Regarding the 1st question, I'm not a Sharepoint Expert, so I hope someone can answer that question. Regarding the others, if you have the Sharepoint Group Object ID, you just need to add a line in your code: Add-AzureADGroupMember -ObjectId $groupID -RefObjectId $userid #Adding B2B users directly to the Group foreach ($email in $invitations) {New-AzureADMSInvitation ` -InvitedUserEmailAddress $email.InvitedUserEmailAddress ` -InvitedUserDisplayName $email.Name ` -InviteRedirectUrl "<a href="<a href="https://mytenant.sharepoint.com/sites/YourNewPortal" target="_blank">https://mytenant.sharepoint.com/sites/YourNewPortal</a>" target="_blank"><a href="https://mytenant.sharepoint.com/sites/YourNewPortal</a" target="_blank">https://mytenant.sharepoint.com/sites/YourNewPortal</a</a>>"` -InvitedUserMessageInfo $messageInfo ` -SendInvitationMessage $true Add-AzureADGroupMember -ObjectId $groupID -RefObjectId $userid #Adding B2B users directly to the Group } Regarding the 3rd questions, from what I know, nested groups are not supported. However, you can use Dynamic Groups (You need a Premium license) and assign that group to SharePoint. I think this Dynamic Rule will be enough: (user.userPrincipalName -match "#EXT#@DomainYouWantToAssignUsers.com")1.3KViews0likes1CommentRe: Silently adding Guest users to Azure AD
Per my understanding, you will always send an email to users. If this is the case, you can invite using PowerShell (bulk invitation) with an email template created by you. I have attached the script. Remember: the user needs to accept and consent the invitation. There's no workaround for this ;)11KViews0likes1CommentRe: Can a Guest User Log Into WIndows 10 AAD Joined Machine?
I don't believe that is possible. - Guest user needs a license and you cannot assign a license to a Guest user. - If the user tries to use his email, it will be user@contoso.com and not user#EXT#contoso.com@fabrikam.com and the source authority will always be the contoso.com13KViews0likes1CommentRe: Conditional Access - Require MFA for Guest Users
Hi Pete, I believe guest users can see your directory members. Try this: - Go to Azure Active Directory -> User Settings -> Manage external collaboration settings Check if the "Guest users permissions are limited" is configured to "yes", if not, please change it.4.3KViews0likes1Comment
Groups
Recent Blog Articles
No content to show