Jump to content

Recommended Posts

Posted

Can anyone help me, i am trying to create users mailboxes by there display name is Exchange 2007 instead of their username?

Thanks

Posted

If you are using powershell to create the accounts you can do something like

 


$user = Get-ADUser some.user

$name = $user.GivenName + "." + $User.Surname

Enable-mailbox -Identity $user.SAMAccountName -Alias $name

 

I haven't tested the above but we use something similar pulling the variable from an input page when creating staff accounts.

 

This link explains the enable mailbox PS command

 

You will need to check for duplicates when using first.lastname email addresses too

Posted

As already mentioned above, create an e-mail address policy. :) I created ours via PowerShell because we wanted the e-mail address to be in lowercase...

 

New-EmailAddressPolicy -Name 'Default E-mail Policy' -EnabledEmailAddressTemplate 'SMTP:%rAa%rBb%rCc%rDd%rEe%rFf%rGg%rHh%rIi%rJj%rKk%rLl%rMm%rNn%rOo%rPp%rQq%rRr%rSs%rTt%rUu%rVv%rWw%rXx%rYy%rZz%1g%[email protected]' -RecipientFilter {((RecipientType -eq 'UserMailbox') -and (Company -eq 'School Name'))}

 

^ E-mail address format = ForenameInitialSurname@school.county.sch.uk

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...