Jump to content

Recommended Posts

Posted

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?

Posted

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}

  • Thanks 1
Posted
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.

  • 1 year later...
Posted
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.

  • Thanks 1
Posted
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 :)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...