How would you disable the anti malware filtering and ensure that engine updates from microsoft are
downloaded and updated.
A.
Disable-Antimalwareagent.ps1
B.
Set-malwarefilteringserver
C.
Disable-Antimalwarescanning.ps1 (probable option)
D.
Update-MalwareFilteringServer.ps1 (guessed option)
Should be B?
“To temporarily bypass malware filtering, run the following command:
Set-MalwareFilteringServer -BypassFiltering $true”
“Bypassing malware filtering should only be done when troubleshooting a problem. When malware filtering is bypassed, the Exchange malware agent remains hooked, and engine updates are kept up-to-date”
B
B
B is correct:-
https://technet.microsoft.com/en-us/library/jj150526(v=exchg.150).aspx
Answer is C – Jamie read the technet article you referenced:
To disable malware filtering, run the following command:
& $env:ExchangeInstallPath\Scripts\Disable-Antimalwarescanning.ps1
The question specifically states disabling malware filtering (not temporarily bypassing malware filtering on an exch server which is what answer B would accomplish)
Tricky question..
https://technet.microsoft.com/en-us/library/jj150526(v=exchg.150)
I take back my statement… Answer is B as engine updates are not kept up to date when disabling malware filtering.