count all mailboxes of owa, imap, pop3 and mapi
Get-CasMailbox -ResultSize Unlimited | ForEach-Object { if ($_.ActiveSyncEnabled) { $ActiveSync++ } if ($_.OWAEnabled) { $OWA++ } if ($_.POPEnabled)
WeiterlesenGet-CasMailbox -ResultSize Unlimited | ForEach-Object { if ($_.ActiveSyncEnabled) { $ActiveSync++ } if ($_.OWAEnabled) { $OWA++ } if ($_.POPEnabled)
Weiterlesen