Objective 5.4 Exchange 2010 Flashcards

Objective 5.4: Generate reports.

1
Q

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.

A

Get-MailboxFolderStatistics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The following command returns mailbox folder statistics for the Kim Akers mailbox: ______.

A

Get-MailboxFolderStatistics –Identity “Kim Akers”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

You can use the PowerShell ______ or ______ cmdlets to refine the information and put it in a format more suited to a report.

A

Format-List, or

Format-Table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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: ______.

A

Get-MailboxFolderStatistics –Identity “Kim Akers” | FT Name,NumberOfItems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

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.

A

Sort-Object, and

Select-Object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

You can use the ______ parameter of the EMS Get-MailboxFolderStatistics cmdlet to define the folders in which you are interested.

A

FolderScope

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The following command returns the folder statistics for the Calendar folder in the Don Hall mailbox: ______.

A

Get-MailboxFolderStatistics –Identity “Don Hall” –FolderScope Calendar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

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.

A

IncludeOldestAndNewestItems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

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.

A

FL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The following command displays the last logon time for the Kim Akers mailbox: ______.

A

Get-MailboxStatistics –Identity “Kim Akers” | FL LastLogonTime

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

You can use the ______ cmdlet to display statistics in a specified order.

A

Sort-Object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The following command lists the mailboxes in the Research mailbox database in descending order of item count: ______.

A

Get-MailboxStatistics –Database Research | Sort-Object ItemCount –Descending | FT DisplayName,ItemCount

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

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.

A

Select-Object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The following command lists the top five mailboxes in the mailbox database Mailbox Database 1363123687 by total item size, in descending order: ______.

A

Get-MailboxStatistics –Database “Mailbox Database 1363123687” | Sort-Object TotalItemSize –Descending | Select-Object –First 5 | FT DisplayName,TotalItemSize

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

You can use the ______ cmdlet to check the last time that users logged on to a Mailbox server.

A

Get-MailboxStatistics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

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.

A

Test-Mailflow

17
Q

The following command tests that the Mailbox server VAN-EX1 can send email to the mailbox with the SMTP address Administrator@adatum.com: ______.

A

Test-Mailflow –Identity VAN-EX1 –TargetEmailAddress Administrator@adatum.com

18
Q

The following command tests that the Mailbox server VAN-EX1 can send email to the Mailbox server VAN-EX2: ______.

A

Test-Mailflow –Identity VAN-EX1 -TargetMailboxServer VAN-EX2

19
Q

You can use the ______ cmdlet to verify that email is sent between Mailbox servers within a defined latency threshold.

A

Test-Mailflow

20
Q

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.

A

ActiveDirectoryTimeout

21
Q

You can specify the display name of the mailbox to which test messages are sent by using the ______ parameter of the Test-Mailflow cmdlet.

A

TargetEmailAddressDisplayName

22
Q

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: ______.

A

Test-Mailflow –Identity VAN-EX1 -TargetMailboxServer VAN-EX2 –ActiveDirectoryTimeout 100 –TargetEmailAddressDisplayName “Kim Akers”

23
Q

The following command obtains all available logon statistics for the Kim Akers mailbox and displays them in list format: ______.

A

Get-LogonStatistics –Identity “Kim Akers” | FL

24
Q

The following command (or script) lists the mailboxes in the mailbox database MyDatabase and displays the mailbox name and size in table format: ______.

A

Get-MailboxStatistics –Database “MyDatabase” | FT DisplayName,TotalItemSize

25
Q

The following command lists the mailboxes in the mailbox database MyDatabase in descending order of mailbox size and displays the mailbox name and size in table format: ______.

A

Get-MailboxStatistics –Database “MyDatabase” | Sort-Object TotalItemSize –Descending | FT DisplayName,TotalItemSize

26
Q

The following command lists the first ten mailboxes in the in the mailbox database MyDatabase in descending order of mailbox size and displays the mailbox name and size in table format: ______.

A

Get-MailboxStatistics –Database “MBDB01” | Sort-Object TotalItemSize –Descending | Select-Object –First 10 | FT DisplayName,TotalItemSize

27
Q

ExBPA can examine your Active Directory and Exchange Server 2010 servers and generate a list of issues, such as suboptimal configuration settings or unsupported or not-recommended options. You can also use it to report on the general health of a system. ExBPA carries out the following scans: ______.

A
  1. Health check (with or without performance baseline)
  2. Permission check
  3. Connectivity test
  4. Baseline
28
Q

You can run ExBPA against an entire deployment, a set of servers, or against a specific server. You can choose to carry out a new scan or access an existing scan. If you access an existing scan, you can enable the ExBPA ______ features.

A

reporting

29
Q

You want to generate a report on the 25 accounts that are using the greatest amount of resources within a mailbox database, identifying those mailboxes that are over 1 GB in size. What EMS cmdlet do you use?

A

The Get-StoreUsageStatistics cmdlet.

30
Q

Your Exchange 2010 organization contains two Mailbox servers named DEN-EX01 and DEN-EX02. You want to determine the amount of time that it takes for messages from DEN-EX01 to be delivered to DEN-EX02. What EMS cmdlet would you use to do this?

A

The Test-Mailflow cmdlet.

31
Q

What EMS cmdlet would you use to check the last time a user accessed a specific mailbox on an Exchange 2010 Mailbox server, or to determine the sizes of specific mailboxes?

A

The Get-MailboxStatistics cmdlet.

32
Q

Your users are receiving unexpected NDRs. What EMC tool could you use to diagnose this problem?

A

The Microsoft Exchange Server Mail Flow Troubleshooter.

33
Q

What tool can examine your Active Directory and Exchange Server 2010 servers and generate a list of issues, such as suboptimal configuration settings or unsupported options?

A

ExBPA