Comments on: Migrating Exchange Online Mail Contacts to Entra ID Guest Accounts https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/ Practical Office 365 News, Tips, and Tutorials Mon, 03 Jun 2024 15:54:21 +0000 hourly 1 https://wordpress.org/?v=6.6.1 By: manjunath https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-291564 Tue, 02 Apr 2024 19:27:01 +0000 https://practical365.com/?p=58308#comment-291564 Is this section still active? i have few queries . Please let me know if i can post my query

]]>
By: Harald89 https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278491 Tue, 24 Oct 2023 11:06:05 +0000 https://practical365.com/?p=58308#comment-278491 In reply to Tony Redmond.

I found a solution, thanks for everything

]]>
By: <div class="apbct-real-user-wrapper"> <div class="apbct-real-user-author-name">Tony Redmond</div> <div class="apbct-real-user-badge" onmouseover=" let popup = document.getElementById('apbct_trp_comment_id_278405'); popup.style.display = 'inline-flex'; "> <div class="apbct-real-user-popup" id="apbct_trp_comment_id_278405"> <div class="apbct-real-user-title"> <p class="apbct-real-user-popup-header">The Real Person!</p> <p class="apbct-real-user-popup-text">Author <b>Tony Redmond</b> acts as a real person and passed all tests against spambots. Anti-Spam by CleanTalk.</p> </div> </div> </div> </div> https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278405 Mon, 23 Oct 2023 17:52:03 +0000 https://practical365.com/?p=58308#comment-278405 In reply to Harald89.

If you overwrite EmailAddresses with the PrimarySMTPAddress, that’s the only address that will be there.

]]>
By: Harald89 https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278383 Mon, 23 Oct 2023 12:36:37 +0000 https://practical365.com/?p=58308#comment-278383 In reply to Tony Redmond.

Thanks for the help, but that doesn’t work, the UPN is still registered as proxyaddress. Maybe there is a way to delet it?

]]>
By: <div class="apbct-real-user-wrapper"> <div class="apbct-real-user-author-name">Tony Redmond</div> <div class="apbct-real-user-badge" onmouseover=" let popup = document.getElementById('apbct_trp_comment_id_278364'); popup.style.display = 'inline-flex'; "> <div class="apbct-real-user-popup" id="apbct_trp_comment_id_278364"> <div class="apbct-real-user-title"> <p class="apbct-real-user-popup-header">The Real Person!</p> <p class="apbct-real-user-popup-text">Author <b>Tony Redmond</b> acts as a real person and passed all tests against spambots. Anti-Spam by CleanTalk.</p> </div> </div> </div> </div> https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278364 Mon, 23 Oct 2023 09:49:41 +0000 https://practical365.com/?p=58308#comment-278364 In reply to Harald89.

Set-MailUser -Identity $UPN -EmailAddress $PrimarySMTPAddress

]]>
By: Harald89 https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278361 Mon, 23 Oct 2023 09:29:50 +0000 https://practical365.com/?p=58308#comment-278361 In reply to Tony Redmond.

The Guest Mail User that you create in the script, but I just found out, with:
Update-MgUser -UserId $NewGuestAccount.Id -ShowInAddressList:$True
The UPN appears in the proxyAddress…
Now im trying to find out how i can avoid that and still show the user in the address list.

]]>
By: Tony Redmond https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278358 Mon, 23 Oct 2023 09:17:38 +0000 https://practical365.com/?p=58308#comment-278358 In reply to Harald89.

Do you mean that Mail User object or the User account?

]]>
By: Harald89 https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278342 Mon, 23 Oct 2023 06:15:22 +0000 https://practical365.com/?p=58308#comment-278342 In reply to Tony Redmond.

The Guest User is getting 2 entries in the proxy address:
smtp: UPN-Address
and
SMTP: external address

I want to get rid of the UPN in the proxy, but didn’t find a solution yet…

]]>
By: Tony Redmond https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278090 Fri, 20 Oct 2023 13:58:46 +0000 https://practical365.com/?p=58308#comment-278090 In reply to Harald89.

$NewUserProperties = @{
UserType = “Guest”
GivenName = $FirstName
Surname = $LastName
DisplayName = $DisplayName
JobTitle = $JobTitle
Department = $Department
MailNickname = $NickName
Mail = $Contact.PrimarySmtpAddress
UserPrincipalName = $UPN

The UPN comes from $UPN = $NickName + “#EXT#@Office365itpros.com”
The primary SMTP address comes from the migrated contact’s email address.

What issue are you seeing?

]]>
By: Harald89 https://practical365.com/migrate-mail-contact-azure-ad-guest-accounts/#comment-278072 Fri, 20 Oct 2023 09:27:36 +0000 https://practical365.com/?p=58308#comment-278072 Hey Tony
In your code, when you create a Guest User, it deposits the UPN in de proxyaddress, why is this?
I can’t find a solution…

]]>