This simple post covers the steps to enable Windows Defender GUI on Windows Server. Windows Defender is a trusted antivirus protection built in to Windows 10. Windows Defender Antivirus delivers real-time protection against software threats like viruses, malware, and spyware across email, apps, the cloud, and the web.
By default, Windows Defender AV is installed and functional on Windows Server 2016. However, the GUI for Windows Defender which is a feature isn’t installed.
If you install the Server 2016 OS from updated ISO copy from MSDN or VLSC, the feature is enabled by default. But if you don’t see that feature enabled, you can use the steps mentioned in this post. Note that you cannot enable interface when you have disabled core Windows Defender feature.
Enable Windows Defender GUI on Windows Server
Perform the following steps to enable Windows Defender GUI on Windows Server.
- Launch the Server Manager
- Click on Tools > Manage.
- Click Add Roles and Features.
You will now see Add Roles and Features Wizard. Select Role-based or feature-based installation. Click Next.
Click Next until you get the option to select Features. Under Windows Defender Features, check the box “GUI for Windows Defender“. Click Next.
On the Confirmation page, click Install.
The GUI for Windows Defender feature is installed successfully. Click Close. Reboot the server and launch Windows Defender.
Using PowerShell to enable Windows Defender GUI on Windows Server
An alternate way to enable Windows Defender interface on Windows Server is by using a PowerShell command. Probably using the PowerShell command is way easier than above method. You can also hide the GUI for Windows Defender using PowerShell command. Run the PowerShell as administrator and run the below command to enable Windows Defender interface.
Install-WindowsFeature -Name Windows-Defender-GUI
To hide the Windows Defender GUI, type the below command. Note that Windows Defender AV will still run normally without the user interface.
Uninstall-WindowsFeature -Name Windows-Defender-GUI