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