Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[color #4E9A06]#List the databases and clean them to show any mailboxes not showing yet.[/color]
Get-Mailboxdatabase | Clean-MailboxDatabase
[color #4E9A06]# Create an array of server names. Change to your server names.[/color]
$Servers = @("[color #CC0000]server1[/color]","[color #CC0000]server2[/color]","[color #CC0000]server3[/color]")
[color #4E9A06]# Now display our disconnected mailboxes.[/color]
ForEach ($Server in $Servers){
Get-MailboxStatistics -Server $Server | where { $_.DisconnectDate -ne $null } | select DisplayName,DisconnectDate}