Jump to content

Delete the Scan With Windows Defender content menu entry from Windows 10 (Threshold 2)


Batu69

Recommended Posts

scan_with_windows_defender-600x378.jpg

If you've installed the November Update for Windows 10 (or Threshold 2 if you prefer) there are a number of changes for the better to enjoy. But there are some changes that you might not be happy with, and the arrival of a new Scan With Windows Defender entry in context menu is something that is likely to grate with many people.

It might be that you have no intention of using Windows Defender, or your context menu may have become unwieldy and need a little trimming. Either way, a quick registry hack is all that's needed to banish the unwanted option. Here's what to do.

Even if you remove the Scan With Windows Defender entry, you'll still be able to scan files -- you can just fire up the app manually and take it from there. You might think that disabling Windows Defender would get rid of the menu item, but you'd be mistaken. So, gird your loins, and hit the registry.

  • Press the Windows key and R, type regedit and hit Enter.
  • Navigate to HKEY_CLASSES_ROOT\CLSID\ {09A47860-11B0-4DA5-AFA5-26D86198A780}
  • Right click this key and select Delete.
  • Click Yes.

That's all there is to it!

Credit to

Link to comment
Share on other sites


  • Replies 5
  • Views 1.7k
  • Created
  • Last Reply

Or just use this in CMD (Command Prompt):

reg delete "HKCR\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}" /f

And if you want to add it back:

reg add "HKCR\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}\InprocServer32" /ve /t REG_SZ /d "C:\Program Files\Windows Defender\shellext.dll" /freg add "HKCR\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}\InprocServer32" /v "ThreadingModel" /t REG_SZ /d "Apartment" /freg add "HKCR\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}\Version" /ve /t REG_SZ /d "10.0.10586.0" /f
Link to comment
Share on other sites


windows defender always turned off on my machines,,,third party software alaways works better and in ant case turns off defender and windows native firewall

Link to comment
Share on other sites


Even a better example. Instead of deleting the whole key, in case if you may want to add the option back in context menu just do the following:

Change the name of the ThreadingModel entry to "0" (it works with any value, just an example) to remove the "Scan With Windows Defender" from context menu:

reg add "HKEY_CLASSES_ROOT\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}\InprocServer32" /v "ThreadingModel" /t REG_SZ /d "0" /f


And if you want it back, change the value to its original state, "Apartment":

reg add "HKEY_CLASSES_ROOT\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}\InprocServer32" /v "ThreadingModel" /t REG_SZ /d "Apartment" /f

In this case you don't delete anything, just a simple rename to enable/disable.

Link to comment
Share on other sites


Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...