Elevating Your Organization's Security with Cloud Security Assessments
As cloud technologies become increasingly integral to business operations, the need for robust security in this domain has never been more pressing....
While running some reports on Exchange backup success I could not figure out why when I ran get-mailboxdatabase | fl Name,LastFullBackup it would return a blank LastFull Backup. In Exchange Management console I could look at the properties of the database and see the Last full backup and the Last incrementation backup times.
After some search, Martin’s Wonderful World of Exchange had an answer for me. You need to add -status to your command or the backup properties where blank.
Command as follows:
Get-MailboxDatabase -Status | fl Name,Server,*backup*
If you only want the LastFullBackup:
Get-MailboxDatabase -Status | fl Name,Server,LastFullBackup
And if you only want to list the databases where the backup didn’t go as planned today:
Get-MailboxDatabase -Status | Select Name,Server,LastFullBackup | Where { $_.LastFullBackup -le (get-date).adddays(-1) }
As cloud technologies become increasingly integral to business operations, the need for robust security in this domain has never been more pressing....
As organizations pivot towards a hybrid cloud strategy, understanding the nuances between Global Azure, Azure Stack Hub, and Azure Stack HCI becomes...
Windows Server 2012/R2, a cornerstone of server operating systems, reached its end-of-life on October 10, 2023. This cessation of regular...