July 2017
Intermediate to advanced
648 pages
31h 9m
English
Let's start off with a simple example. To generate a report of mailboxes created in the previous week, execute the following command:
Get-Mailbox -ResultSize Unlimited | ` ? {$_.WhenMailboxCreated –ge (Get-Date).AddDays(-7)} | ` Select DisplayName, WhenMailboxCreated, Database | ` Export-CSV C:\mb_report.CSV -NoType
Read now
Unlock full access