Skip to main content
/
PowerShell
/
PS: How find all mailboxes on Ex2010 with OWA enabled
PS: How find all mailboxes on Ex2010 with OWA enabled
- 0 views
Powershell
IT
Ex2010
started by
anonymous
on 20 Jun 12
#1
anonymous
on 20 Jun 12
get-mailbox | where {$_.Database -like "DAG*"} | Get-CASMailbox | Where {$_.owaenabled}
The above command ignores mailboxes on Ex2003
get-mailbox | where {$_.Database -like "DAG*"} | Get-CASMailbox | Where {$_.owaenabled}
The above command ignores mailboxes on Ex2003
...
Cancel
To Top
Start a New Topic »
« Back to the PowerShell group
Start a New Topic
The above command ignores mailboxes on Ex2003