When utilizing ISA (in this case, ISA 2006) to publish Outlook Web Access (OWA), there are various options you can choose from in order to authenticate a user. One listener authentication mechanism that is often used is Forms Based Authentication. By default, your ISA form when publishing OWA will look like the following:As you can see, by default, it asks you … [Read more...] about Exchange 2007 OWA via ISA RSA – Authentication Delegation
Exchange
Cross-Forest Mailbox Move Changes in Exchange 2010
There's quite a few changes coming to a cross forest mailbox moves in Exchange 2010. Well for one, in Exchange 2007, you would use Move-Mailbox. In Exchange 2010, you would use New-MoveRequest. The way these two cmdlets work in regards to cross forest mailbox moves is significant. Why? Read on...In Exchange 2007, when you did a Move-Mailbox to another … [Read more...] about Cross-Forest Mailbox Move Changes in Exchange 2010
Exchange 2007 Shared Mailbox Permission/Delegates Issues
This post is a bit different than the other shared mailbox posts out there. A couple articles in regards to shared mailbox permissions include:https://knicksmith.blogspot.com/2007/03/exchange-2007-and-shared-mailboxes.htmlhttps://blogs.technet.com/msukucc/archive/2009/02/23/shared-mailboxes.aspxAs you can see, these articles including adding SendAs and/or … [Read more...] about Exchange 2007 Shared Mailbox Permission/Delegates Issues
Another Exchange Scriplet (Moving Mailboxes)
This one I created for the following reasons: 1. Mailbox Database was filling up 2. Wanted to take the filled up database and split them across two different databases.The script will sort all the mailboxes by size and take 40% of the largest mailboxes and move them to a specified database and take the remaining 60% and move them to the other database.If you don't … [Read more...] about Another Exchange Scriplet (Moving Mailboxes)
A few Exchange PowerShell scriptlets
Figured I would share a few scriptlets I've written recently. Hopefully some of you may find them useful at some point at least. Scriptlet 1 Find out all users who live on a specific mailbox without having to type the entire mailbox database name: get-mailbox -database $(get-mailboxdatabase | where-object {$_.name -like "*Database1*"}) | Format-Table Name,Database -wrap … [Read more...] about A few Exchange PowerShell scriptlets

