Create Bulk Mailboxes in Microsoft Exchange Server 2010 & 2013

A fast process we require to do often;  to create multiple mailboxes at one go… And the Script Follows: (Study the script please for your future growth) $numberofMailboxes = Read-Host “Enter the Number of Mailboxes you want”  $EnterPrefix = Read-Host “Enter the Prefix of the Account”  $GettingPassword = Read-Host “Enter the Password for the accounts”  $Password = Convertto-SecureString “$GettingPassword” -Asplaintext -Force  $GettingEmailSuffix = “((Get-AcceptedDomain)[0]).Name”  $mail = “@”+”$GettingEmailSuffix”  For($i=0;$i -le $numberofMailboxes;$i++)  {  $UPN = “$EnterPrefix”+”$i”+”$mail”  $Name = “$EnterPrefix”+”$i”  New-Mailbox -Name $Name -Alias $Name -UserPrincipalName $Upn -Password $Password  } And Read More …