Objective 1.4 Exchange 2010 Flashcards

Objective 1.4: Create and Configure databases

1
Q

You should be aware that Exch Srv 2010 stores mailboxes and ______ folders in Exchange databases.

A

public

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

Each database is stored in a single Extensible Storage Engine database (______) file.

A

. edb

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

You can configure options by using the database Properties dialog box in the EMC. The ______ tab lets you specify the limits at which warning messages are sent, Send is prohibited, and Send and Receive are prohibited.

A

Limits

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

To configure database size limits you need to configure the ______ of the server running Exch Srv 2010 that hosts the database.

A

registry

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

You need to know the database GUID, which you can obtain by using the EMS ______ cmdlet.

A

Get-MailboxDatabase

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

You then use regedit.exe to locate and edit the following registry subkey:

A

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\

Services\MSExchangeIS*servername\Private-databaseGUID*

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

The following command configures a deleted item retention time of 14 days for the mailbox database MyMailboxDatabase: ______.

A

Set-MailboxDatabase -Identity “MyMailboxDatabase” -DeletedItemRetention 14.00:00:00

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

To specify the default database name MailboxDatabase01, you would use the following command: ______.

A

Setup.com /mode:Install /roles:Mailbox /MdbName:.MailboxDatabase01

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

You can edit the properties of mailbox or public folder databases by accessing the Properties dialog box for the relevant database or by using the EMS ______ and ______ cmdlets.

A

Set-MailboxDatabase, and

Set-PublicFolderDatabase

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

A Mailbox server can host a maximum of ______ public folder database(s).

A

one

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

You need to configure ______ folders if your clients are using IMAP4 or WebDAV clients such as Entourage or Microsoft Outlook 2003 SP1 (or earlier).

A

public

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

You can use the ______ cmdlet to create a public folder database. The following command creates a public folder database named My Public Folder Database and specifies its file path and log file path: ______.

A

New-PublicFolderDatabase

New-PublicFolderDatabase -Name “My Public Folder Database” -EdbFilePath “C:\Program Files\Microsoft\Exchange Server\Mailbox\PublicDatabase.edb” -LogFolderPath “D:\ExchangeDatabases\Public\Logs\PublicDatabase”

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

Removing user or system public folders from a public folder database by using the EMS is a two-stage procedure: ______.

A

You first need to identify the public folder by using the EMS Get-PublicFolder cmdlet and pipe the result into the EMS Remove-PublicFolder cmdlet.

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

The following command removes all user public folders from the public folder database on the mailbox server VAN-EX1: ______.

A

Get-PublicFolder -Server VAN-EX1 “" -Recurse -ResultSize:Unlimited | Remove-PublicFolder -Server VAN-EX1 -Recurse -ErrorAction:SilentlyContinue

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

The following command removes all system public folders from the public folder database on the mailbox server VAN-EX1: ______.

A

Get-PublicFolder -Server VAN-EX1 “\Non_Ipm_Subtree” -Recurse -ResultSize:Unlimited | Remove-PublicFolder -Server VAN-EX1 -Recurse -ErrorAction:SilentlyContinue

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

In a ______ scenario, you might need to change the default public folder database if your public folder database and your mailbox database are associated with different versions of Exchange.

A

coexistence

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

You can specify a default public folder database on the ______ tab of the mailbox database Properties dialog box. You can also use the ______ (not the New-MailboxDatabase) cmdlet.

A

Client Settings,

Set-MailboxDatabase

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

The following command specifies the public folder database PFDB01 as the default public folder database for mailbox database MailDatabase01: ______.

A

Set-MailboxDatabase -Identity “MailDatabase01” -PublicFolderDatabase “PBDB01”

19
Q

To ensure that your databases continue to operate efficiently, Microsoft recommends that you perform nightly ______ on mailbox databases and public folder databases.

A

maintenance

20
Q

There is no Maintenance tab in the Properties dialog box for a public folder database. You set the maintenance schedule for a public folder database on the ______ tab.

A

General

21
Q

For a mailbox database, you use the Maintenance tab. You can also use the _____ or _____ cmdlet as appropriate.

A

Set-MailboxDatabase, or

Set-PublicFolderDatabase

22
Q

The following command sets the database schedule for the mailbox database MailDatabase01 on Server MBX01 to run between 02:00 and 04:00 hours on Sundays and Wednesdays: ______.

A

Set-MailboxDatabase -Identity “MBX01\MailDatabase01” -MaintenanceSchedule “Sun.2:00-Sun.4:00”,”Wed.2:00-Wed.4:00”

23
Q

If you use the New-MailboxDatabase cmdlet to create a mailbox database, you need to ______ it after it is created. The following command mounts the mailbox database MyMailboxDatabase: ______.

A

mount

Mount-Database -Identity MyMailboxDatabase

24
Q

The following command dismounts the mailbox database MyMailboxDatabase: ______.

A

Dismount-Database -Identity MyMailboxDatabase

25
Q

Remember that the New-MailboxDatabase cmdlet syntax requires the _____ parameter, whereas the syntax of cmdlets to configure, mount, dismount, or remove a database requires the _____ parameter.

A

Name,

Identity

26
Q

The following command creates the mailbox database MyMailboxDatabase on server VAN-EX1 and specifies the .edb database file path “C:\MyDatabaseFiles\MyMailboxDatabase.edb” and the log folder path “D:\MyDatabaseFiles\LogFolder”: ______.

A

New-MailboxDatabase -Name “MyMailboxDatabase” -Server VAN-EX1 -EdbFilePath C:\MyDatabaseFiles\MyMailboxDatabase.edb -LogFolderPath D:\MyDatabaseFiles\LogFolder

27
Q

The following command removes the mailbox database MyMailboxDatabase: ______.

A

Remove-MailboxDatabase -Identity MyMailboxDatabase

28
Q

You can use the ______ cmdlet to configure mailbox database settings.

A

Set-MailboxDatabase

29
Q

The following command sets the warning quota to 600 MB, the prohibit send quota to 750 MB, and the prohibit send and receive quota to 950 MB on the mailbox database My MailboxDatabase: ______.

A

Set-MailboxDatabase -Identity “My MailboxDatabase” -IssueWarningQuota 600MB -ProhibitSendQuota 750MB -ProhibitSendReceiveQuota 950MB

30
Q

By default, the folders that hold the databases are stored in the folder path ______.

A

C:\Program Files\Microsoft\Exchange\Server\v14\Mailbox

31
Q

In the EMC, you can right-click the database, and then click Move Database Path. You can also use the EMS ______ cmdlet.

A

Move-DatabasePath

32
Q

The following command configures a new path of “C:\MyFolder\MyMailDatabase01.edb” for the location of the mailbox database MyMailDatabase01 and moves the related files to that location: ______.

A

Move-DatabasePath -Identity MyMailDatabase01 -EdbFilePath C:\MyFolder\MyMailDatabase01.edb

33
Q

The EMS ______ cmdlet can obtain the settings for all public folder databases in an Exch 2010 organization or for a specified public folder database.

A

Get-PublicFolderDatabase

34
Q

You should be aware that you can access the Properties dialog box for a public folder database through the EMC. This provides access to the _____, _____, _____, and _____ tabs.

A

General,

Replication,

Limits, and

Public Folder Referral

35
Q

The following command lists the settings for all public folder databases in an Exchange organization: ______.

A

Get-PublicFolderDatabase | fl

36
Q

The following command lists the properties of the public folder database MyPublicFolderDatabase on the server ServerA: ______.

A

Get-PublicFolderDatabase -Identity “ServerA\MyPublicFolderDatabase”

37
Q

With the EMS ______ cmdlet, you can configure public folder database settings.

A

Set-PublicFolderDatabase

38
Q

The following command sets the issue warning quota to 2,000 MB and configures the quota notification schedule for all public folders in the public folder database named MyPublicFolderDatabase to Mondays, Wednesdays, and Fridays from 3:00-3:20 am: ______.

A

Set-PublicFolderDatabase -Identity MyPublicFolderDatabase -IssueWarningQuota 2000MB -QuotaNotificationSchedule “Mon.3:00 AM-Mon.3:20 AM, Wed.3:00 AM-Wed.3:20 AM, Fri.3:00 AM-Fri.3:20 AM”

39
Q

You have used the New-MailboxDatabase cmdlet to create a mailbox database called Finance on the server DEN-EX2. You want to enable this mailbox database to be used to provision new mailboxes. What EMS command do you issue?

A

The Mount-Database -Identity Finance command.

40
Q

You want to ensure that mailboxes in a mailbox database are retained for six weeks after deletion. What EMS cmdlet and parameter should you use to do this?

A

You use the Set-MailboxDatabase cmdlet with the DeletedItemRetention parameter.

41
Q

You want to set the default public folder database for the mailbox database named HRD Mail to the database HRD-DB on server GLAS-MBX1. What EMS command do you issue?

A

The Set-MailboxDatabase -Identity “HRD Mail” -PublicFolderDatabase “GLAS-MBX1\HRD-DB” command.

42
Q

You want to ensure that the mailbox database named Manufacturing undergoes the removal of items that have passed their retention period, the removal of unused indexes, and other cleanup tasks. You want to schedule these operations so that they occur every Saturday between 10:15 and 11:45 PM. What EMS command do you issue?

A

The Set-MailboxDatabase -Identity Production -MaintenanceSchedule 6.22:15-6.23:45 command.

43
Q

You need to move the transaction log files for a specified mailbox. What EMS cmdlet do you use to carry this out?

A

The Move-DatabasePath cmdlet.