March 2, 2011Published by jeremy.whittaker at March 2, 2011Get the ten biggest mailboxes in Exchange 2010 export to report using PowerShellGet-Mailbox -database | Get-MailboxStatistics | Sort-Object TotalItemSize -descending |Select-Object DisplayName,ItemCount,@{name=”MailboxSize”;exp={$_.totalitemsize}} -first 10 | Convertto-Html | out-File report.htm
November 2, 2009Published by jeremy.whittaker at November 2, 2009Send a daily html CCR report via PowershellCreate a powershell script to generate the html file Test-ReplicationHealth | ConvertTo-Html -title “BackupReport CCR” -body “Backup status per Storage Group” | Set-Content E:StorageGroupBackupStatus.html note: test-systemhealth […]