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)
PowerShell
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
PowerShell and its future
As has been stated in the past, I am currently learning PowerShell (I am new to scripting). Unfortunately, the last month has been a bit busy for me and I haven't been able to focus on PowerShell at all. But I'm getting back into it now. Upon getting back into it, I discovered a couple cool utilities as well as information about PowerShell's future and figured I would share … [Read more...] about PowerShell and its future
Obtaining Exchange Information including Edge with PowerShell
So the last month I've been learning how to do PowerShell scripting. I'm new at scripting and figured I would share my first Exchange script due to sheer excitement. I'd like to give a special thanks to Shay Levy @ https://blogs.microsoft.co.il/blogs/ScriptFanatic. Shay has been a tremendous help over @ https://powershellcommunity.org when I run into issues that any typical … [Read more...] about Obtaining Exchange Information including Edge with PowerShell