You manage an Office 365 tenant that uses an Enterprise E1 subscription.
A user receives frequent email messages from a specific domain that are flagged as spam.
You need to ensure that the domain name is not flagged as spam for only the user.
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 Set-MailboxJunkEmailConfiguration cmdlet to configure the junk email rule for specific
mailboxes.
The junk email rule helps Microsoft Outlook and Outlook Web App users to automatically remove
any spam that gets past anti-spam filters and reaches the users’ mailboxes. With this cmdlet, users
and administrators can make changes to the junk email rule that’s configured for a specific mailbox.
Example: This example disables the junk email rule configuration for the user named David Pelton.
Set-MailboxJunkEmailConfiguration “David Pelton” -Enabled $false
Incorrect:
Not G: Use the Set-MalwareFilterPolicy cmdlet to modify malware filter policies in your organization.Set-MailboxJunkEmailConfiguration
https://technet.microsoft.com/en-us/library/dd979780(v=exchg.150).aspx
Agree: Answer is H.
Set-MailboxJunkEmailConfiguration
Aha, ‘not flagged as spam ONLY for the user’ -> this rules out answer F, as this command covers the entire organization.