Tuesday, May 30, 2023

Move System Mailboxes

The Exchange 2016 installation will create a System Mailbox. The normal location is in the C: along with the system binaries that make up Exchange. This is generally not a desirable place for this to be located and a much better location would be alongside the databases that would be used for mailboxes of connecting users. Therefore to move them away from the C: we just need a few system powershell command. Firstly we want to check the name of the database and it’s current location. This is done with the following powershell command.

get-mailboxdatabase | select name,edbfilepath,logfilepath | fl

Which will produce output as below.

As you can see from the screenshot, the next task is to give it a better name. I have chosen System DB01 for this. The full command is

set-mailboxdatabase “Mailbox Database 0647524308” -Name “System DB01”

Now we can move it. On the Server I have built, I provisioned two additional volumes. Firstly and E: to hold the transaction logs for the databases and an F: for the databases themselves. To move the System Database I would use the following command.

move-databasepath “System DB01” -EdbFilePath “F:\Database\System DB01\System DB01.edb” -LogFolderPath “E:\Logs\System DB01”

The move process will temporarily dismount the database during the move, so please be aware of that if there are production mailboxes using it.

As a final check, run the powershell command that views the paths again to confirm it is in the new location.


And you are done. No need to restart the Server or any services.

Mark Rochester
Mark Rochesterhttps://thecloudgeezer.com
Mark currently works in the cloud space assisting large companies to migrate from either on premises to the cloud, or cloud to cloud. His experience with Enterprise migrations spans more than 25 years which basically makes him old. However, with all the oldness creeping up he still finds technology massively exciting. Please reach out for a chat anytime you would like. :-)

Related Articles

SPF DKIM DMARC Scanner Tool

I am assuming that if you made it this far then you will already know a little bit around the importance of SPF, DKIM...

SharePoint Site/File Discovery Report

Getting a full list of every file in your organizations' Share Point environment can be difficult via the normal consoles and reports. What I...

Backup your Cloud Storage on a Local Drive

Having all your data in the cloud is a wonderful thing. BUT, sometimes you either want the peace of mind that you have a...

Stay Connected

85FansLike
36,747FollowersFollow
8,073SubscribersSubscribe
- Advertisement -

Latest Articles