如果我已经部署了虚拟机,如何使用VM代理从Azure市场(即McAfee)安装防病毒软件? 必须有一些Powershell的命令或一些东西,但我试过的一切都没有奏效。
从预览门户 :
浏览 – >虚拟机 – >select虚拟机 – >所有设置 – >扩展 – >添加 – >select扩展 – >创build。
使用Powershell :
https://msdn.microsoft.com/en-us/library/azure/dn606311.aspx
每个扩展有不同的先决条件,所以它不仅是使用PowerShell命令安装扩展的问题。 检查上面的列表中的每个指示。
Mcaffee指南
在c:\ mcafee.config下创build这个文件。 这个configuration是一个试用帐户。 如果您有订阅,请查看上面的链接。
{ "featureVS": "true", "featureBP": "true", "featureFW": "true", "relayServer": "false" }
在PowerShell上执行:
# Get the VM $vm = Get-AzureVM –ServiceName $servicename –Name $name # Add McAfee Endpoint Protection to the Virtual Machine Set-AzureVMExtension -Publisher McAfee.EndpointSecurity -ExtensionName McAfeeEndpointSecurity -Version 6.* -VM $vm.VM -PublicConfigPath c:\mcafee.config # Update the VM which will install the McAfee Endpoint Protection Agent Update-AzureVM -Name $servicename -ServiceName $name -VM $vm.VM