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 …

Single Exchange Server Environment: Re-Create A PowerShell Virtual Directory

DO IT IN A LAB ENVIRONMENT FIRST….ALWAYS TEST Effected Machine: Exchange Server 2010 In this blog I will show you how to recreate Powershell Virtual Directory in a Single Exchange Server Environment. We need to create this Powershell Virtual Directory when Read More …

A New Frontier for Exchange Server 2013 Keys and Licensing

A new release of Microsoft Exchange is available right now, though it was released couple of weeks back. The editions are: Microsoft Exchange Server 2013 Enterprise Edition (can store up to 50 Databases per server) Microsoft Exchange Server 2013 Standard Edition Read More …