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
The exam might test that you know how to use the EMS ______ cmdlet to verify that each of your Mailbox servers can successfully send itself a message and to verify that the system mailbox on one Mailbox server can successfully send a message to the system mailbox on another Mailbox server.
Test-Mailflow
The following command tests that the Mailbox server VAN-EX1 can send email to the mailbox with the SMTP address Administrator@adatum.com: ______.
Test-Mailflow –Identity VAN-EX1 –TargetEmailAddress Administrator@adatum.com
The following command tests that the Mailbox server VAN-EX1 can send email to the Mailbox server VAN-EX2: ______.
Test-Mailflow –Identity VAN-EX1 -TargetMailboxServer VAN-EX2
You can use the ______ cmdlet to verify that email is sent between Mailbox servers within a defined latency threshold.
Test-Mailflow
The Test-Mailflow cmdlet supports a number of parameters. For example, the ______ parameter specifies the number of seconds that elapse before the task provides an informational message about the delay.
ActiveDirectoryTimeout
You can specify the display name of the mailbox to which test messages are sent by using the ______ parameter of the Test-Mailflow cmdlet.
TargetEmailAddressDisplayName
The following command sends a message to the Kim Akers mailbox if a test message from Mailbox server VAN-EX1 to Mailbox server VAN-EX2 experiences a delay greater than 100 seconds: ______.
Test-Mailflow –Identity VAN-EX1 -TargetMailboxServer VAN-EX2 –ActiveDirectoryTimeout 100 –TargetEmailAddressDisplayName “Kim Akers”
The following command obtains all available logon statistics for the Kim Akers mailbox and displays them in list format: ______.
Get-LogonStatistics –Identity “Kim Akers” | FL
The following command (or script) lists the mailboxes in the mailbox database MyDatabase and displays the mailbox name and size in table format: ______.
Get-MailboxStatistics –Database “MyDatabase” | FT DisplayName,TotalItemSize