Security hardening for your servers

It’s been a little while since I added a new post so I thought I would add some details of what’s current for me. Working for a retail based company with several websites, we have to comply to PCI-DSS requirements. This essentially means we have to structure our network and servers in a ‘secure’ manner,…

List all your smtp addresses from powershell

Another one of those things that you might use once in a blue moon. I had to retrieve a list of all smtp addresses from our Exchange 2007 environment for validation. We had multiple smtp addresses for each recipient so this could have been quite a daunting task but is actually straight forward. Here’s the powershell……

List all your mailbox sizes with powershell

This is one of those things that you may not use often but you are almost guaranteed to need at some point. Below is an easy powershell script/command for you to use which will export a list of all your mailboxes and their sizes, into a CSV file. Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft…