September
4th,
2008
In Exchange 2007 you can activate the anti-spams on the Edge Transport or Hub Transport server. Via Microsoft update you can update the agents, spammers are developing their techniques daily. With the command Get-AntispamUpdate you can get the current settings.
To update the Anti-spam agents automaticaly we need to execute one of the following Powershell commands:
Enable-AntispamUpdates -Identity srv-exc -IPReputationUpdatesEnabled $True -UpdateMode Automatic -SpamSignatureUpdatesEnabled $True
or
Enable-AntispamUpdates -Identity srv-exc -IPReputationUpdatesEnabled $True -MicrosoftUpdate RequestedNotifyDownload -UpdateMode Automatic -SpamSignatureUpdatesEnabled $True
In both cases we activate automatic updating of the Anti-spam agents for the server with the name srv-exc. The difference between the first and second method is that in the second method we also setup Microsoft Update. The second method needs only to be used if Microsoft Update hasn’t been setuped.