Complete Network Diagram for 500 Users Using Microsoft Solution

Below is the complete diagram for an organization for 500 users. This design includes the following Microsoft Services: Page-1: Complete Design Topology Page-2: Exchange Server 2013 Design Topology with DAG Page-3: Lync Server 2013 Design Topology with PSTN Page-4: Active Read More …

Exchange Client Network Bandwidth Calculator

Another exchange based post for calculating the bandwidth requirement for the exchange clients. Link follows: Donload the excel file: http://gallery.technet.microsoft.com/exchange/Exchange-Client-Network-8af1bf00/file/49302/4/Exchange%20Client%20Network%20Bandwidth%20Calculator%20-%20Public.0.48BETA4%20-%20TimeZone.v5.xlsx This is an excel file bearing 288KB of data.

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 …