kennysarmy Posted June 28, 2019 Posted June 28, 2019 I have a hybrid Exchange setup and I've got some users who I can see in Office 365 who do not appear to exist when I log in via the ECP. Any ideas?
kennysarmy Posted June 28, 2019 Author Posted June 28, 2019 It appears when the hybrid setup was implemented that some accounts were missed! Entering the command : Enable-RemoteMailbox -Identity "username" -RemoteRoutingAddress "user-email-address" Seems to fix the issue - is there a way to run this command on multiple users?
RobD Posted June 28, 2019 Posted June 28, 2019 Create a CSV with the id and routing address in and call it something.csv Identity,RemoteRoutingAddress Identity1,RemoteRoutingAddress Identity2,RemoteRoutingAddress Identity3,RemoteRoutingAddress Then run this: Import-CSV something.csv | ForEach {Enable-RemoteMailbox -Identity $_.Identity -RemoteRoutingAddress $_.RemoteRoutingAddress} 1
kennysarmy Posted July 1, 2019 Author Posted July 1, 2019 Create a CSV with the id and routing address in and call it something.csv Identity,RemoteRoutingAddress Identity1,RemoteRoutingAddress Identity2,RemoteRoutingAddress Identity3,RemoteRoutingAddress Then run this: Import-CSV something.csv | ForEach {Enable-RemoteMailbox -Identity $_.Identity -RemoteRoutingAddress $_.RemoteRoutingAddress} Cheers. I'll give this a try - many thanks.
kennysarmy Posted September 2, 2020 Author Posted September 2, 2020 I've come to do this this year and I'm getting this error: Can't think what I'm doing wrong.... Please help
kennysarmy Posted September 2, 2020 Author Posted September 2, 2020 Can't remember if I do this in a standard powershell window or in the Exchange Console
3s-gtech Posted September 2, 2020 Posted September 2, 2020 Can't remember if I do this in a standard powershell window or in the Exchange Console Check your CSVs format and syntax. The identity variable is not being read. 1
kennysarmy Posted September 3, 2020 Author Posted September 3, 2020 Check your CSVs format and syntax. The identity variable is not being read. I did n't solve it but worked out if I just copy and pasted in all the commands in one go it read one line at a time
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