Enable Microsoft AntiMalware UI in Azure virtual machine

Simple powershell to enable the Microsoft Antimalware UI in an Azure virtual machine. This is the antimalware extension you can install on deployment, or through security center.

  1. Seeing this when trying to open System Center Endpoint Protection on an Azure virtual machine?

    nomsantimalware

  2. By default the UI is disabled on an Azure VM. To enable you just need to change a registry value. Here is a quick powershell script to do that.

    $registryPath = “HKLM:\SOFTWARE\Policies\Microsoft\Microsoft Antimalware\UX Configuration”
    $Name = “UILockdown”
    $value = “0”
    New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null

  3. After running that in powershell you can open the UI.

    yaymalwareui

 

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.