Powershell

如何使用代理工具在現有 Azure VM 上安裝 AV?

  • March 17, 2015

如果我已經部署了 VM,如何使用 VM 代理從 Azure 市場(即 McAfee)安裝防病毒軟體?必須有一些Powershell命令或其他東西,但我嘗試過的一切都沒有奏效。

從預覽門戶

瀏覽 -> 虛擬機 -> 選擇 VM -> 所有設置 -> 擴展 -> 添加 -> 選擇擴展 -> 創建。

使用 Powershell

https://msdn.microsoft.com/en-us/library/azure/dn606311.aspx

每個擴展都有不同的先決條件,因此不僅僅是使用 powershell 命令安裝擴展的問題。檢查上面的列表以獲取每個的說明。

麥咖啡指南

http://azure.microsoft.com/blog/2014/12/01/new-antimalware-options-for-protecting-azure-virtual-machines/

在 c:\mcafee.config 下創建此文件。此配置適用於試用帳戶。如果您有訂閱,請查看上面的連結。

{
   "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

引用自:https://serverfault.com/questions/676260