When Exchange 2003 came out, it offered Outlook Anywhere, although it was called “RPC/HTTPS”. This was an all or nothing service. In other words, if you set up Outlook Anywhere on the server then every user was able to use it. This poses a data security risk because users could connect to their mailbox from […]
Tag Archives: Exchange
Upgrading to Exchange 2010 SP2
Exchange 2010 Service Pack 2 includes a number of new improvements. For details on all of the features check out Technet. This post will walk through the steps to upgrade to SP2 from Exchange 2010 SP1. Continue Reading
The 2012 Microsoft Product Roadmap
The star of last year’s product roadmap was Office 365. Microsoft this year looks likely to pivot from the public cloud to the private cloud, while also shipping staples like SQL Server and releasing major betas — and possibly final versions — of blockbusters including Windows 8 tablet, client and server, and Office 15. Continue […]
Windows Network Load Balancing with Exchange 2010 Client Access Servers
A couple of years ago, Ross Smith IV gave a presentation on how Outlook client’s connection to Exchange 2010 Client Access Servers (CAS). Part of presentation covered load-balancing of the CAS servers and for the first time I heard Microsoft recommend using a Hardware Load-Balancer over Windows Network Load Balancing (NLB). Continue Reading
Rebuilding DirSync server with x64 version
With the release of the x64 version of DirSync, many people will be rebuilding their http://mikecrowley.wordpress.com/2011/11/21/office-365-dirsync-x64-installation-walkthrough/
New-MailboxImportExport request error couldn’t connect to target mailbox
Great post by Joe Stocker http://blogs.catapultsystems.com/IT/archive/2011/11/11/new-mailboximportrequest-error-couldnt-connect-to-target-mailbox.aspx
Exchange 2010 OWA Redirection
One of my goals with any solution is “simplicity”. Make it easier for users to access the resources they need in a safe and secure manner. Redirecting your general URL for Outlook Web Access/App to the proper secure address makes life for your users much easier. The old method for doing this will no longer […]
Exchange 2010 SP1 Rollup 6 Released
On October 27, 2011, Microsoft released Rollup 6 for Exchange 2010 SP1 (KB2608646). This is the latest rollup update for Exchange 2010 SP1. http://www.microsoft.com/download/en/details.aspx?id=27849
Offline Address Book Generation
The Exchange 2007/2010 Offline Address Book (OAB) can be a pain to manage in environments where users expect instant access to updates to the Global Address List. Outlook 2007/2010 clients running in Cached Mode use the Offline Address Book by default for all address lookups. This means when a new user is added to your […]
Reporting on Mailboxes and Moving Mailboxes based on Input File
Get-Mailbox -resultsize unlimited | Get-MailboxStatistics | where {$_.ObjectClass -eq “Mailbox”} | Sort-Object TotalItemSize -Descending | ft DisplayName,@{expression={$_.TotalItemSize.Value.ToMB()}},ItemCount,StorageLimitStatus > C:\Installs\Scripts\MailboxSizes.txt Get-Content .\mailboxmove.txt | New-MoveRequest -TargetDatabase EXDAG01DB01 -Confirm:$false