In organizations where too many accounts were setup, and ExAdmins’ primary job to keep the accounts neat and tidy, and this is a handy tool for these admins to find out the stale accounts and disable them and finally in Read More …
Tag: Microsoft Exchange
Community Connect: Microsoft Exchange Server 2013 Technical Overview Deep Dive
And as you can imagine this event is organized by Microsoft for the EPG accounts, where I took a long session for Microsoft Exchange Server 2013 Technical Deep Dive session. From left to Right: Sabeel, Me, Mallick, Asif And the audience Read More …
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 …
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 …