Powershell command to get the list of mailbox which was never logged in
Get-MailboxStatistics | where {$_.Lastlogontime -eq $null } | Select displayName
Powershell command to get the list of mailbox which was never logged in
Get-MailboxStatistics | where {$_.Lastlogontime -eq $null } | Select displayName
Didn’t work as is. I used this instead: get-mailbox | Get-MailboxStatistics | where {$_.LastLogonTime -eq $null} | select DisplayName