Category Archives: PowerShell and Exchange 2007

PowerShell in Practice offer today only

Manning have PowerShell in Practice on a half price offer today. Go to http://www.manning.com and use code dotd0330cc when ordering

Posted in Books, Powershell, PowerShell and Active Directory, PowerShell and Exchange 2007, PowerShell and IIS, PowerShell and SQL Server, PowerShell and WMI | Leave a comment

Mailbox database status

  A recent forum post on mailbox database status in Exchange 2007  proved interesting. If I do this PS> Get-MailboxDatabase -Status | select Name, server, storagegroup, mounted Name Server StorageGroup—- —— ————MailDatabase EXCH07 EXCH07\Test1MDB01 EXCH07 EXCH07\SG1MDB02 EXCH071 EXCH071\SG2 but if … Continue reading

Posted in PowerShell and Exchange 2007 | Leave a comment

Net start – -why?

I am reading the Exchange 2007 Design exam study guide at the moment.  The characters are a bit wooden and the plot is obvious but apart from that its not bad. One bit made me think that the dots weren’t … Continue reading

Posted in PowerShell and Exchange 2007 | Leave a comment

Exchange 2007 SP1

Couple of interesting points from installing an Exchange 2007 SP1 test machine yesterday. 1) You can’t do the schema upgrade if the install routine can’t identify the schema master FSMO holder. If replication is not up to date on the … Continue reading

Posted in PowerShell and Exchange 2007 | Leave a comment

List mailboxes by mailbox database

I was asked today how we could look at which users are in which mailbox database on Exchange 2007.  Simple answer is Get-Mailbox | Sort database, name | Format-Table name, database Technorati Tags: PowerShell, Exchange 2007

Posted in PowerShell and Exchange 2007 | 22 Comments

Exchange 2007 SP1

Exchange 2007 SP1 has arrived.  Doesn’t seem to be any new PowerShell functionality but SP1 makes a product worthy of consideration in many eyes.  An increase in installations next year should push PowerShell interest to new heights. As SP1 is … Continue reading

Posted in PowerShell and Exchange 2007 | Leave a comment

Calculations revisited

In my previous post  http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!896.entry I showed that the totalitemsize property of Get-mailBoxStatistics usually returned a string showing the mailbox size in bytes with the string ending in a "B".  However If the size is an exact number of kilobytes then … Continue reading

Posted in PowerShell and Exchange 2007 | 1 Comment

Setting Message Size limits

You need to set global message size limits on Exchange 2007.  Limits are set on the connectors. Get-ReceiveConnector | Set-ReceiveConnector -MaxMessageSize 25MB Get-SendConnector | Set-SendConnector -MaxMessageSize 25MB If you need to set individual connectors the use the appropriate Get-***Connector to … Continue reading

Posted in PowerShell and Exchange 2007 | Leave a comment

Hidden mail users

I can remember writing a VBScript a few years ago to determine if mail users were hidden from the address books.  It was an interesting script with over 80 lines of code.  One of the major pain points was managing … Continue reading

Posted in PowerShell and Exchange 2007 | Leave a comment

Exchange Server 2007: Administrator’s Companion

The Exchange Server 2007 Administrator’s Companion by Glenn, Lowe and Maher (Microsoft Press ISBN: 0735623503) covers the sort of material you would expect from the title – How to install, configure and administer Exchange 2007. This isn’t a complete review … Continue reading

Posted in PowerShell and Exchange 2007 | 4 Comments