Exchange 2007: Send-As
Find all mailboxes with Send As permissions for someone other than yourself with Exchange PowerShell using this command: Get-Mailbox | Get-ADPermission | where {($_.ExtendedRights -like...
View ArticleExchange 2007: Find Hidden Users using PowerShell
Find hidden users in the GAL using this powershell command: Get-Mailbox | Where {$_.HiddenFromAddressListsEnabled -eq $True} | Select Name, HiddenFromAddressListsEnabled The post Exchange 2007: Find...
View ArticleExchange 2007: Change Default Domain with PowerShell
Your users sick of typing in their domain name in the OWA auth screen? Well, here’s the PowerShell command to make it where they don’t have to any more: Set-OWAVirtualDirectory -Identity “owa (default...
View ArticleDesign Considerations: Exchange 2007 and the Mac
In Exchange 2007, the Client Access Server (CAS) role accepts connections from clients in order to allow them access to the Exchange Server infrastructure (mailboxes, public folders, GAL, etc). CAS...
View ArticleEntourage Web Services Edition Available
For those who have been waiting for a time when Entourage uses less bandwidth, has enhanced support for EWS features and well, works better, the time has come. The beta came and went and we waiting....
View ArticleBypassing Exchange 2007's Content Filter
Exchange 2007 is often set to filter all spam and reject mail that is classified as spam. If you configure Exchange 2007 to do so then you still need an email address that does not get filtered. The...
View ArticleiPhone + Locked Down Exchange
Some iPhones can have a problem with some Exchange servers due to the fact that they are not fully manageable using ActiveSync Policies. The New-ActiveSyncMailboxPolicy commandlet is can be used with...
View ArticleWhat Exchange NDR Codes Mean
One of the things that hasn’t changed in all these years with Exchange is Non-Delivery Reports. An NDR is an email that is sent when a message you send fails to go out. Exchange has had a consistent...
View ArticleBulk Exporting of PST Files Using Exmerge
To automate the process of exporting Exchange mailboxes to .pst files, we’re going to use the exmerge tool using a Windows batch file. We can use a MAILBOXES.TXT file to choose which mailboxes we’ll be...
View ArticleRedirecting Exchange Login Pages
By default, when you require an SSL certificate in IIS on an Exchange server, if users hit the page without providing an https:// in front they will get an error. Rather than require certificates, it’s...
View Article