Exchange Powershell Exchange and Powershell Helps, Tips, and Tricks

(You Had Me At EHLO...) Finding High Item Count Folders Using the Exchange Management Shell

12.07.2009 · Posted in Exchange

FROM: You Had Me At EHLO...

EDIT 12/8/2009: Made a few modifications to the post and script based on feedback received.

Working in Exchange Customer Service and Support, we often see cases where user performance, or overall server performance, is impacted because of a high number of items in critical ...

(You Had Me At EHLO...) Exchange 2010 Transport Architecture Diagrams Available for Download

12.01.2009 · Posted in Exchange

FROM: You Had Me At EHLO...

The Exchange 2010 transport server role architecture diagrams are now available for download. The Hub Transport Role Architecture diagram can help you understand the different transport components involved in processing and routing messages, the different transport agents that act upon messages and the events on which they are ...

(You Had Me At EHLO...) Updates to the Exchange Supportability Matrix

11.30.2009 · Posted in Exchange

FROM: You Had Me At EHLO...

With the release of Exchange 2007 SP2 we provided a Supportability Matrix which outlined the supported configurations for Exchange 2000 SP3, Exchange 2003 SP2, and Exchange 2007 (RTM, SP1, and SP2).   But as many are aware, with the release of Windows Server 2008 R2 ...

Delete all messages after date from mailbox

11.24.2009 · Posted in Exchange, Powershell

I was asked to delete everything from a mailbox called familydomains that was older than 2009. Here is the Exchange Powershell command that I used to delete everything earlier than 12/31/2008 to a PST file located in my C:\temp directory. export-mailbox familydomains -PSTFolderPath C:\temp\ -DeleteContent -endDate 12/31/2008 The advantage to doing it this way is that ...