Due to issues with a definitions update failing, I needed to shut down windows defender services, but I cannot as ALL options in services.msc are greyed out, even if run as administrator.
Why is this and how can I fix it?
I am using windows 10 pro v 14393 161208-2252
Ian
Moved from Windows
The Windows Defender Service runs as a System Protected Process in order to prevent tampering:
However, administrators do have the option for configuring the operational state of Windows Defender with Group Policy. You can use the Local Group Policy Editor (gpedit.msc) to toggle Defender on or off in Windows 10 Pro – but in the Home edition, you either have to manually edit the Policies key – or use a REG fileto make the edit:
http://www.tenforums.com/tutorials/5918-windows-defender-turn-off-windows-10-a.html
Or, if you want to make things quick and easy, you can use these REG commands. Just copy, paste, and enter the appropriate line at the elevated (admin) command prompt:
Turn Off Windows Defender:
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f
Turn On Windows Defender:
REG DELETE "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware
It should go without saying that the Group Policy switch should only be used (temporarily) in cases where Windows Defender’s CPU consumption is rendering the PC unusable; or in cases where Defender fails to shut down automatically when a third-party AV app is installed. When Defender refuses to yield to another AV app, the issue should be properly resolved by uninstalling the third-party app; running its removal tool; and then reinstalling it, rather than by leaving the Group Policyedit in place. Leaving the edit in place will prevent you from taking advantage of Defender’s new Limited Periodic Scanning feature, and there’s little doubt that this added layer of protection for third-party AV users will become a valuable asset – if and when Microsoft is able to get it working properly:
https://www.tenforums.com/tutorials/51514-limited-periodic-scanning-turn-off-windows-10-a.html
GreginMich