Exchange 2010: Display backup status of mailbox databases

The backup status of the mailbox databases can be displayed with a simple Powershell command

Get-MailboxDatabase -Status | ft name,LastFullBackup,LastIncrementalBackup,BackupInProgress

Backup

In this example, the time of the last full backup and the last incremental backup is displayed. It also shows whether the database is currently being backed up.

Leave a Comment