7

when we look at our Exchange Server and all the mailboxes we notice that some users have green arrows pointing right over their icon. This does appear to only be on older users on our system so I just want to see if this means that the users have been migrated - or that it is saying that the mailbox exists on a different exchange server? Any ideas? Thanks.

Kieran Walsh
  • 908
  • 7
  • 14
  • 31

2 Answers2

15

This simply means that a mailbox move request exists for that user. If you expand "Recipient Configuration" you will see an item called "Move Request". Click on it to view all the existing move requests and their status. If they are all successful you can select all and clear them. That will make the green arrow go away.

Or if you like the EMS:

Get-moverequest

to view all the move reqests.

remove-moverequest <user alias>

to clear a specific move request.

get-moverequest | remove-moverequest 

to clear all move requests.

HostBits
  • 11,776
  • 1
  • 24
  • 39
2

That means the mailbox was moved from one server to another but the move request has yet to be cleared.

Go to Move Requests and right-hand click on each user and choose Clear Mailbox move request

Ben Pilbrow
  • 11,995
  • 5
  • 35
  • 57