You manage an Office 365 tenant that uses an Enterprise E1 subscription. You configure a retention policy for all mailboxes.
You must apply a new retention policy immediately because of upcoming personnel changes.
You need to ensure that the new retention policy is applied to the mailboxes immediately.
Which Windows PowerShell cmdlet should you run?
A.
Enable-JournalRule
B.
New-RetentionPolicyTag
C.
Start-ManagedFolderAssistant
D.
Set-CsUser
E.
Set-CsPrivacyConfiguration
F.
Set-HostedContentFilterPolicy
G.
Set-MalwareFilterPolicy
H.
Set-MailboxJunkEmailConfiguration
Explanation:
Use the New-RetentionPolicyTag cmdlet to create a retention tag.
Retention tags are used to apply retention settings to folders and individual items such as e-mail messages and voice mail. These settings specify how long a
message remains in a mailbox and the action to be taken when the message reaches the specified retention age. When a message reaches its retention age, it’s
moved to the user’s In-Place Archive or deleted.
New-RetentionPolicyTag
https://technet.microsoft.com/en-us/library/dd335226(v=exchg.150).aspx
IMHO, Should be B: https://technet.microsoft.com/en-us/library/aa998864(v=exchg.160).aspx
Sorry, C as per URL.
should be C – this will start it immediately, B is setting up the tag
Correct answer is B as the link describes. You need to enable it for ALL users. You cannot do this with start-managedfolderassistant because it requires an -Identity parameter. So you need to create à loop.
With new-retentionpolicytag you can specify the parameter -retentionenabled $true
https://technet.microsoft.com/en-us/library/dd335226(v=exchg.160).aspx
You can pipe Start-ManagedFolderAssistant with get-mailbox cmdlet to apply to all user’s.
C. Is still correct
https://technet.microsoft.com/en-us/library/aa998864(v=exchg.160).aspx