Skip to content

Instantly share code, notes, and snippets.

@andreaswasita
Created August 31, 2014 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreaswasita/71eb3894abf4379b3b7e to your computer and use it in GitHub Desktop.
Save andreaswasita/71eb3894abf4379b3b7e to your computer and use it in GitHub Desktop.
$service= "AzureVMAntiMalware"
$name = "MyAzureVM01"
# Get the Azure VM
$vm = Get-AzureVM –ServiceName $service –Name $name
# Add Microsoft Antimalware Agent to Azure VM
Set-AzureVMExtension -Publisher Microsoft.Azure.Security -ExtensionName IaaSAntimalware -Version 1.* -VM $vm.VM
# Update the VM which will install the Antimalware Agent
Update-AzureVM -Name $name -ServiceName $service -VM $vm.VM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment