100%(1)1 out of 1 people found this document helpful
This preview shows page 96 - 100 out of 260 pages.
Employees currently archive old email messages in . pst files. The company has now mandated that all emailmessages stored in . pst files must be archived online.You need to enable archiving for all mailboxes.How should you complete the relevant Windows PowerShell script? To answer, select the appropriate cmdletfrom each list in the answer area.Hot Area:Correct Answer:
Section: Configure Exchange Online and Lync Online for end usersExplanationExplanation/Reference:Explanation:In-Place Archiving helps you regain control of your organization’s messaging data by eliminating the need forpersonal store (.pst) files. With archiving enabled, users can store messages in an archive mailbox, also calledan In-Place Archive, which is accessible by using Microsoft Outlook and Outlook Web App.In this question, we use the Get-Mailbox cmdlet to retrieve a list of all mailboxes.The –Filter {(RecipientTypeDetails –eq ‘UserMailbox’)} option is used to retrieve a list of user mailboxes only(thus excluding Room mailboxes, Resource mailboxes etc).The Enable-Mailbox –Archive command is used to create an archive for each user mailbox returned by the Get-Mailbox command.References:(v=exchg.150)QUESTION 90DRAG DROPYour company has an Office 365 subscription and uses Microsoft Exchange Online. Employees have archivemailboxes that have the default retention policy applied.A new company policy requires some existing mailboxes to have a retention policy that deletes only emailmessages in the Deleted Items folder after 90 days. Deleted messages must be recoverable. None of theexisting retention tags meet the new requirement.You create an empty retention policy named Policy-90.You need to configure the retention policy and apply it to the mailboxes.How should you complete the relevant Windows PowerShell script? To answer, drag the appropriate codesegments to the correct targets. Each segment may be used once, more than once, or not at all. You may needto drag the split bar between panes or scroll to view content.Select and Place:
Correct Answer: Section: Configure Exchange Online and Lync Online for end usersExplanationExplanation/Reference:Explanation:Retention Policy Tags are used to apply retention settings to folders and individual items such as e-mailmessages. These settings specify how long a message remains in a mailbox and the action to be taken whenthe message reaches the specified retention age.A Retention Policy is a group of retention tags that can be applied to a mailbox.In this question, we have a new retention policy named Policy-90. We need to create a new retention tag tospecify the deletion of email messages in the Deleted Items folder after 90 days. We then need to assign theretention tag to the Policy-90 retention policy. Then we apply the Policy-90 retention policy to mailboxes.
The New-RetentionPolicyTag cmdlet creates a new retention tag.