DRIVE EFFICIENCY THROUGH AUTOMATED IT.
SAVE COST THROUGH CONSOLIDATION OF IT.
WANT TO KNOW MORE ABOUT STRATEGIC CONSULTING CLICK HERE.
MICROSOFT / RISUAL HYPER-V CLOUD EVENT 22ND MARCH 2011 CLICKHERE.
Home > Uncategorized > Exchange 2010 Mailbox move error “Strings that includes ‘@’, where ‘@’ cannot be the last character”

Exchange 2010 Mailbox move error “Strings that includes ‘@’, where ‘@’ cannot be the last character”

When migrating a mailbox to Exchange 2010 i came across an issue, where every time i tried to move the specific mailbox i got the below error.

Property Expression “User name” isn’t valid. Valid values are : Strings that includes ‘@’, where ‘@’ cannot be the last character.

image

Resolution

 The username i was trying to move did not have an @ sign in his name so i didn’t see why this was failing, so this prompted me to look at the users account in AD.

I viewed the properties of the user account and then i checked the account tab, and i spotted there was no domain name specified in the user login name, which would explain why exchange was seeing it as “username@” so i added the domain entry in and then retried the move via exchange and it worked fine :)

image

image

Hope this helps.

Daniel Davies

Categories: Uncategorized Tags: ,
  1. GoHeat
    August 6th, 2010 at 13:35 | #1

    I wanted to THANK YOU for this post. It helped me immensely!

  2. Steve Grantham
    February 18th, 2011 at 13:55 | #2

    Thanks for posting this, I had the exact same problem, and you saved me a lot of time!

  3. Daniel Bingham
    March 9th, 2011 at 07:26 | #3

    Thank you so much! This helped me immediately on 3 corrupted mailboxes!

    Thanks

  4. Chris
    April 29th, 2011 at 14:52 | #4

    Thanks so much! Saved me a ton of time as well.

  5. Rajesh Gowda
    August 18th, 2011 at 10:15 | #5

    really helpful..
    Thank you so much!

  6. Robert Tally
    September 22nd, 2011 at 19:19 | #6

    This was a great help Daniel, it solved the problem in over 20 accounts.

  7. cheers dude
    October 6th, 2011 at 01:57 | #7

    helped me heaps

  8. passby
    October 7th, 2011 at 22:43 | #8

    This really helps and save us tons of time to find out why last two mailboxes couldn’t be moved. thanks a lot!

  9. ed
    October 18th, 2011 at 09:36 | #9

    thanks a million, this helped me heaps. keep the great week.

  10. Mark
    October 24th, 2011 at 15:56 | #10

    Worked like a charm. Thanks for posting this.

  11. October 25th, 2011 at 14:36 | #11

    Thanks for the tip. I had 50+ so decided to handle to handle this in PowerShell.

    To find the accounts:
    Get-ADUser -Properties * -Filter * | ? {$_.UserPrincipalName -NotMatch “@” }

    Then pipe the results to set-aduser, here i concatenate the SamAccountName with your UPN suffix:
    Set-ADUser -UserPrincipalName ($_.SamAccountName + “@yourdomain”)

    Regards,
    jfrmilner

  12. Mark
    January 5th, 2012 at 21:58 | #12

    Thank you, helped greatly!

  13. Rob
    January 28th, 2012 at 07:31 | #13

    Count me another that was helped by this, thanks!

  1. February 18th, 2011 at 16:00 | #1