List all online archives and their total size in PowerShell
Ever wondered how much space individual online archives were occupying? Me too, so I decided to generate a list using the Get-MailboxStatistics PowerShell command. Here is the command I used to obtain the details and format the table to list…
Export an Online Archive to PST using PowerShell
Yesterday I received a request to export an online archive to a PST file. This is easily done using the New-MailboxExportRequest command with the IsArchive parameter. Here is an example: New-MailboxExportRequest -Mailbox “Dave Webb” -IsArchive -FilePath “\\server\share\davewebb-archive.pst”