Objective 5.4 Exchange 2010 Flashcards
Objective 5.4: Generate reports.
The exam might test that you know what steps to take to generate a report that presents information about the folders in a specific mailbox, including the number and size of items in the folder, the folder name and identity, and other information. You should know that you can use the EMS ______ cmdlet for this task.
Get-MailboxFolderStatistics
The following command returns mailbox folder statistics for the Kim Akers mailbox: ______.
Get-MailboxFolderStatistics –Identity “Kim Akers”
You can use the PowerShell ______ or ______ cmdlets to refine the information and put it in a format more suited to a report.
Format-List, or
Format-Table
The following command lists in table format the name of each folder in the Kim Akers mailbox and the number of items in each folder: ______.
Get-MailboxFolderStatistics –Identity “Kim Akers” | FT Name,NumberOfItems
You can use the PowerShell ______ and ______ cmdlets to list folders in order of size or item count and to list, for example, the five largest or smallest folders.
Sort-Object, and
Select-Object
You can use the ______ parameter of the EMS Get-MailboxFolderStatistics cmdlet to define the folders in which you are interested.
FolderScope
The following command returns the folder statistics for the Calendar folder in the Don Hall mailbox: ______.
Get-MailboxFolderStatistics –Identity “Don Hall” –FolderScope Calendar
You can easily determine the dates of the oldest and newest items in each folder by issuing an EMS command. You can use the ______ parameter with the Get-MailboxFolderStatistics cmdlet for this purpose.
IncludeOldestAndNewestItems
You can display the value of a specific statistic in a specific mailbox. If a mailbox returns statistics, you can use the PowerShell ______ cmdlet to display the value of one or more specified statistics.
FL
The following command displays the last logon time for the Kim Akers mailbox: ______.
Get-MailboxStatistics –Identity “Kim Akers” | FL LastLogonTime
You can use the ______ cmdlet to display statistics in a specified order.
Sort-Object
The following command lists the mailboxes in the Research mailbox database in descending order of item count: ______.
Get-MailboxStatistics –Database Research | Sort-Object ItemCount –Descending | FT DisplayName,ItemCount
If you do not want to list all the mailboxes in a mailbox database or on a Mailbox server, but instead you want to list, for example, the top five mailboxes in terms of total item size, you can pipe the results of your search into the PowerShell ______ cmdlet.
Select-Object
The following command lists the top five mailboxes in the mailbox database Mailbox Database 1363123687 by total item size, in descending order: ______.
Get-MailboxStatistics –Database “Mailbox Database 1363123687” | Sort-Object TotalItemSize –Descending | Select-Object –First 5 | FT DisplayName,TotalItemSize
You can use the ______ cmdlet to check the last time that users logged on to a Mailbox server.
Get-MailboxStatistics