Protection Tab

Below is a list of PowerShell commands related to the new Anti-Malware feature:

To look at what is in the default policy, simply hit the Edit button:

Click on Settings on the left to see what you can configure:

As you can see, most of the options here are for configuring notification or how to handle the message once it is detected by the Anti-Malware engine.
At this point this is all I have on this as there isn’t a whole lot of documentation on this feature.
Options to configure:
- Block messages completely
- Delete attachments and configure the blocking message
- Who to notify of the issue – external or internal
- Administrator notifications
- Custom notifications
The below section is directly from TechNet:
http://technet.microsoft.com/en-us/library/jj215675(EXCHG.150).aspx
Get-MalwareFilteringServer
[This is pre-release documentation and subject to change in future releases.]
Applies to: Exchange Server 2013 Preview
Topic Last Modified: 2012-07-12
Use the Get-MalwareFilteringServer cmdlet to view the Malware agent settings in the Hub Transport service on a Mailbox server.
For information about the parameter sets in the Syntax section below, see Parameters.
Syntax
Get-MalwareFilteringServer [-Identity <MalwareFilteringServerIdParameter>] [-DomainController <Fqdn>]
Examples
Example 1
This example displays a summary of the Exchange Malware agent settings on all Mailbox servers in your organization.
Copy Code
Get-MalwareFilteringServer
Example 2
This example returns the detailed Exchange Malware agent settings on a Mailbox server named Mailbox01.
Copy Code
Get-MalwareFilteringServer Mailbox01 | Format-List
Detailed Description
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they’re not included in the permissions assigned to you. To see what permissions you need, see the “Anti-malware” entry in the Anti-Spam and Anti-Malware Permissions topic.
Parameters
Input Types
To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.
Return Types
To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.
Pasted from <http://technet.microsoft.com/en-us/library/jj215675(EXCHG.150).aspx>
Set-MalwareFilteringServer
[This is pre-release documentation and subject to change in future releases.]
Applies to: Exchange Server 2013 Preview
Topic Last Modified: 2012-06-13
Use the Set-MalwareFilteringServer cmdlet to configure the Malware agent settings in the Hub Transport service on a Mailbox server.
For information about the parameter sets in the Syntax section below, see Parameters.
Syntax
Set-MalwareFilteringServer -Identity <MalwareFilteringServerIdParameter> [-BypassFiltering <$true | $false>] [-Confirm [<SwitchParameter>]] [-DeferAttempts <Int32>] [-DeferWaitTime <Int32>] [-DomainController <Fqdn>] [-ForceRescan <$true | $false>] [-MinimumSuccessfulEngineScans <Int32>] [-PrimaryUpdatePath <String>] [-ScanErrorAction <Block | Allow>] [-ScanTimeout <Int32>] [-SecondaryUpdatePath <String>] [-UpdateFrequency <Int32>] [-UpdateTimeout <Int32>] [-WhatIf [<SwitchParameter>]]
Examples
Example 1
This example sets the following Malware agent settings on the Mailbox server named Mailbox01:
- Sets the update frequency interval to 2 hours
- Sets the time to wait between resubmit attempts to 10 minutes
Copy Code
Set-MalwareFilteringServer Mailbox01 -UpdateFrequency 120 -DeferWaitTime 10
Detailed Description
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they’re not included in the permissions assigned to you. To see what permissions you need, see the “Anti-malware” entry in the Anti-Spam and Anti-Malware Permissions topic.
Input Types
To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.
Return Types
To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.