Objective 7.2 Exchange 2010 Flashcards
Objective 7.2: Configure compliance.
You need to know what steps to take to protect the privacy of individuals and the confidentiality of communications by configuring ______ so that access is restricted to authorized users and permitted actions.
Information Rights Management (IRM)
The exam might test that you are aware that Rights Management Services (RMS) includes all the server and ______ technologies that are required to support IRM in an organization.
client
The EMS ______ cmdlet issued without parameters retrieves a list of active rights policy templates. This cmdlet retrieves the templates that are currently available to the Exchange 2010 server on which the command is run.
Get-RMSTemplate
IRM protection can be applied to messages ______ by Outlook users.
manually
You can use the ______ cmdlet to enable or disable IRM for internal messages and to enable or disable transport decryption, journal report decryption, IRM for Exchange Search, and IRM in OWA.
Set-IRMConfiguration
The following command enables licensing and hence enables IRM features for messages sent to internal recipients: ______.
Set-IRMConfiguration –InternalLicensingEnabled $true
The following command enables licensing, and hence, enables IRM features for messages sent to external recipients: ______.
Set-IRMConfiguration –ExternalLicensingEnabled $true
The following command enables journal report decryption: ______.
Set-IRMConfiguration –JournalReportDecryptionEnabled $true
The following command disables IRM features in OWA: ______.
Set-IRMConfiguration –OWAEnabled $false
You can use commands based on the EMS ______ cmdlet to enable or disable IRM in OWA for your entire Exchange 2010 organization.
Set-IRMConfiguration
You can also enable or disable IRM for an OWA virtual directory by using the EMS ______ cmdlet.
Set-OWAVirtualDirectory
Alternatively, you can enable or disable IRM for an OWA mailbox policy by using the EMS ______ cmdlet.
Set-OWAMailboxPolicy
The following command enables IRM in OWA for an entire Exchange Server 2010 organization: ______.
Set-IRMConfiguration -OWAEnabled $true
The following command disables IRM in OWA for the virtual directory MyVirtualDirectory on Client Access Server VAN-EX2: ______.
Set-OWAVirtualDirectory –Identity VAN-EX2\MyVirtualDirectory –IRMEnabled $false
Remember that the Set-IRMConfiguration cmdlet supports the OWAEnabled parameter, whereas the ______ and Set-OWAMailboxPolicy cmdlets support the IRMEnabled parameter.
Set-OWAVirtualDirectory
You need to know what steps to take to configure journaling to record organizational communications for use in an email ______ strategy. The exam might test that you are aware that a journaling agent is a transport agent that processes messages on Hub Transport servers.
retention
Exchange 2010 provides the ______ and premium journaling options. The premium option uses journal rules.
standard
Journal rule ______ defines which messages are journaled by the journaling agent.
scope
You can ______ the journal rule to Internal, External, or Global recipients.
target
The ______ can be an Exchange mailbox, a distribution group, or a contact.
recipient
Typically, recipients might be subject to regulatory requirements or might be involved in ______.
legal proceedings
If you do not specify a journaling recipient, all messages sent to or from recipients that match the journal rule ______ are journaled.
scope
You can specify one or more mailboxes to be used for collecting journal ______.
reports
You can use the EMS ______ cmdlet to create a mailbox to use as a journaling mailbox.
New-Mailbox
The following EMS commands create a journaling mailbox named Journal with the UPN journal@adatum.com in the mailbox database MyMailDatabase—note that you are prompted for a password after you issue the first command: ______.
$password = Read-Host “Enter password” -AsSecureString
New-Mailbox -Name Journal -UserPrincipalName journal@adatum.com -Database “MyMailDatabase” -Password $password
When you have created a mailbox to use as a journaling mailbox, Microsoft recommends that you configure this mailbox to accept messages only from the Microsoft Exchange recipient or from authenticated senders, and disable its storage ______ limits.
quota
When you have created a mailbox, you can then create a journaling rule by using the EMS ______ cmdlet to configure the mailbox as a journaling mailbox.
New-JournalRule
The following command stores all messages sent to DonHall@adatum.com in the journaling mailbox Journal: ______.
New-JournalRule -Name “Don-Hall-Compliance” -JournalEmailAddress “Journal” -Scope Global -Recipient DonHall@adatum.com -Enabled $True
The following command stores all messages sent to the distribution group BookAuthors@contoso.com to the journaling mailbox Authors Journal: ______.
New-JournalRule -Name “Book-Authors-Journal” -JournalEmailAddress “Authors Journal” -Scope Global –Recipient BookAuthors@contoso.com -Enabled $True
You use the EMS ______ cmdlet to modify an existing journaling rule.
Set-JournalRule