1

我知道有办法为 Azure VM 启用反恶意软件,如下所示:

反恶意软件

但是在创建云服务时我没有看到这样的选项。
Azure 云服务上运行着一个辅助角色。该组织有一个在机器上安装反恶意软件的安全规则。
云服务是否默认包含反恶意软件?

4

1 回答 1

3

我希望微软能更好地记录他们的东西。似乎 AntiMalware 扩展也可用于云服务,而不仅仅是虚拟机。但这只能从这里的 PowerShell 参考中理解。另一个完全用于云服务扩展的资源。

可以在此处找到有效且有效的 PowerShell 脚本:

Add-AzureAccount
# use Select-AzureSubscription in case your account has more than one 
Select-AzureSubscription -SubscriptionName 'PUT HERE YOUR SUBSCRIPTION'
[System.Xml.XmlDocument] $XmlConfig = New-Object System.Xml.XmlDocument 
# load the Antimalware extension configuration from external XML file
# The content of the XML needs to be:
# <AntimalwareConfig><AntimalwareEnabled>true</AntimalwareEnabled></AntimalwareConfig>
# ref.: http://msdn.microsoft.com/en-US/library/azure/dn771718
$XmlConfig.load('D:\tmp\AntiMalware.config')
Set-AzureServiceAntimalwareExtension -ServiceName "PUT HERE THE CLOUD SERVICE NAME" -AntimalwareConfiguration $XmlConfig
于 2014-09-15T11:41:35.967 回答