exchange2010sp2 , after you bulk-enable user mailboxes, aliases appear garbled for users in the OU that are Chinese.
Have Exchange2010 experience of the friends know, we if in the graphical interface for multiple domain accounts to open the mailbox, and for the OU in the Chinese user so will cause user alias is garbled, this is a rather depressing thing.
Here's how to fix it:
Copy the following into a notepad and save the file as a Alias.ps1 file
$list =get-mailbox
ForEach ($item in $list)
{
$user =get-user $item
$sam = $user. sAMAccountName
Set-mailbox $item –alias "$sam"
}
Note: $list =get-mailbox represents a mailbox variable.
$item represents a property variable for each mailbox.
$sam = $user. sAMAccountName represents the login variable for each user
Save the Alias.ps1 file to the Exchange C disk directory. Then open input: EMS. \alias.ps1
Open EMC validation, problem resolution.
Resolves an issue where Exchange user mailbox aliases are garbled