Can you run the below command in Powershell & share output with us.
Get-Service Windefend, SecurityHealthService, wscsvc| Select Name,DisplayName, Status
_AmolShelar
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I have in Windows Server 2016:
Get-WindowsOptionalFeature -Online -FeatureName "Windows-Defender*" | Format-Table
Enable-WindowsOptionalFeature -Online -FeatureName "Windows-Defender-Features" -NoRestart
Enable-WindowsOptionalFeature -Online -FeatureName "Windows-Defender" -NoRestart
Get-WindowsOptionalFeature -Online -FeatureName "Windows-Defender*" | Format-Table
what is the equivalent in Windows Server 2019:
Get-WindowsOptionalFeature -Online -FeatureName "Windows-Defender*" | Format-Table
Enable-WindowsOptionalFeature -Online -FeatureName "Windows-Defender-Antivirus" -NoRestart
Get-WindowsOptionalFeature -Online -FeatureName "Windows-Defender*" | Format-Table
Is this correct? I am getting an error...
Enable-WindowsOptionalFeature : Feature name Windows-Defender-Antivirus is unknown.
At line:2 char:1
Thanks,
Dom
Can you run the below command in Powershell & share output with us.
Get-Service Windefend, SecurityHealthService, wscsvc| Select Name,DisplayName, Status
_AmolShelar
Hello,
May be this is the version Server 2019:
Get-WindowsOptionalFeature -Online -FeatureName "Windows-Defender*" | Format-Table
Enable-WindowsOptionalFeature -Online -FeatureName "Windows-Defender" -NoRestart
Get-WindowsOptionalFeature -Online -FeatureName "Windows-Defender*" | Format-Table
Let me know
Thanks,
Dom
Hello,
This is the result:
PS C:\Windows\system32> Get-Service Windefend, SecurityHealthService, wscsvc| Select Name,DisplayName, Status
Get-Service : Cannot find any service with service name 'SecurityHealthService'.
At line:1 char:1
Get-Service : Cannot find any service with service name 'wscsvc'.
At line:1 char:1
Name DisplayName Status
Windefend Windows Defender Service Running
PS C:\Windows\system32>
Thanks,
Dom