Bankesy Posted January 12, 2023 Posted January 12, 2023 Good afternoon, Hoping somebody can tell me what I'm obviously missing here, currently in hybrid environment and run the following command in Exchange Management Shell (2019) to create mailboxes in cloud rather than on prem: Enable-RemoteMailbox "Username1" -RemoteRoutingAddress "[email protected]" But this doesn't set the username in O365 to [email protected] It just sets the username as the remote routing address and then I'm running a different separate command to change it after. I feel like there must be a way I can set the username at the same time as creating the mailbox? Thanks
ConceroEdu_Brad Posted January 12, 2023 Posted January 12, 2023 New-RemoteMailbox -Name "Username1" -UserPrincipalName "[email protected]" -RemoteRoutingAddress "[email protected]" -PrimarySmtpAddress "[email protected]" - - - Updated - - - or this one Enable-RemoteMailbox "Username1" -RemoteRoutingAddress "[email protected]" -PrimarySmtpAddress "[email protected]"
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now