You manage an Office 365 tenant that uses an Enterprise E1 subscription.
You need to ensure that users are informed when Exchange Online Protection quarantines email messages.
Which Windows PowerShell cmdlet should you run? sender. https://technet.microsoft.com/en-us/library/jj215689(v=exchg.150).aspx

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-MalwareFilterPolicy cmdlet to modify malware filter policies in your organization.
Example 1
This example modifies the malware filter policy named Contoso Malware Filter Policy with the following settings:
Delete messages that contain malware.
Don’t notify the message sender when malware is detected in the message.
Notify the administrator admin@contoso.com when malware is detected in a message from an internal
Set-MalwareFilterPolicy -Identity “Contoso Malware Filter Policy” -Action DeleteMessage –
EnableInternalSenderAdminNotifications $true -InternalSenderAdminAddress admin@contoso.com
References:
Answer is F
5
1
Correct!! Answer is F
2
0
The answer is wrong, the correct answer is “Set-HostedContentFilterPolicy”
2
0
Set-HostedContentFilterPolicy
The EnableEndUserSpamNotification parameter enables for disables sending end-user spam quarantine notification messages. Valid input for this parameter is $true or $false. The default value is $false.
https://docs.microsoft.com/en-us/powershell/module/exchange/antispam-antimalware/set-hostedcontentfilterpolicy?view=exchange-ps
0
0
why EOP is included with E1 subscribtion answer is correct
0
0
From EAC – Malware Filter – settings
If malware is detected in an email attachment, the message will be quarantined and can be released only by an admin
I know cannot use powershell to quarantine email but question asks only about notification to users – Ans is correct
0
0
The question is confusing because it does not say why EOP should send the message to quarantine for malware or spam, the question says “You need to ensure that users are informed” so here is the answer, Set-HostedContentFilterPolicy can notify the end user about SPAM while Set-MalwareFilterPolicy will only notify the administrator, so the answer is F
2
0