DRAG DROP
Your company has an Office 365 subscription and uses Microsoft Exchange Online. Some employees
have archive mailboxes that have the default retention policy applied.
The default retention policy does not meet the latest company requirements. You create a retention
policy named RetentionPolicy1 and apply the necessary retention tags to the policy.
You need to apply the new retention policy to all archive mailboxes and ensure that the new
retention policy tags are applied as soon as possible.
Which three Windows PowerShell commands should you run in sequence? To answer, move the
appropriate commands from the list of commands to the answer area and arrange them in the
correct order.
Answer: See the explanation
Use the Start-ManagedFolderAssistant cmdlet to immediately start messaging records management (MRM) processing of mailboxes that you specify.
Set-Mailbox -RetentionPolicy has description: The RetentionPolicy parameter specifies the retention policy that you want applied to this mailbox. You can use any value that uniquely identifies the policy.
Otherwise, Set-MailboxPlan -RetentionPolicy has description: This parameter is reserved for internal Microsoft use. Interesting.
Here are some of the sites we recommend for our visitors.
very few web sites that happen to become in depth beneath, from our point of view are undoubtedly properly really worth checking out
just beneath, are many totally not connected sites to ours, even so, they’re surely worth going over
one of our visitors not long ago encouraged the following website
Wonderful story, reckoned we could combine several unrelated information, nevertheless seriously worth taking a search, whoa did 1 master about Mid East has got additional problerms too
Sites of interest we have a link to
very couple of web sites that happen to be in depth beneath, from our point of view are undoubtedly very well worth checking out
Here are some of the web sites we advocate for our visitors
RIGHT :
For the last command :
https://blogs.technet.microsoft.com/hot/2012/06/25/retention-policy-does-not-work-automatically-in-exchange-online-for-office-365/
$users=Get-mailbox -Resultsize unlimited -filter {(ArchiveStatus -eq “Active”)}
$users | ForEach-Object {set-Mailbox $_.Identity -RetentionPolicy “RetentionPolicy1”}
$users | ForEach-Object {Start-ManagedFolderAssistant -Identity $_.identity}