Thursday, March 28, 2024

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

Migrate Microsoft 365 Mailboxes to Google Workspace

This is not a very common subject to talk about as most of the migrations that get performed are people moving into the Microsoft...

Microsoft 365 Discovery Report

If you are working with a Microsoft 365 tenant, whether it is for your own or for a client, it is often necessary to...

Batches Paused in ‘Needs Approval’ Status

When you are using the native Microsoft tools to migrate from Google Workspace (Gmail) into Microsoft 365 the tool works very well. It does...

Stay Connected

86FansLike
36,672FollowersFollow
32,381SubscribersSubscribe
- Advertisement -

Latest Articles