Batu69 Posted November 14, 2015 Share Posted November 14, 2015 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 More sharing options...
xyzdev Posted November 14, 2015 Share Posted November 14, 2015 Or just use this in CMD (Command Prompt):reg delete "HKCR\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}" /fAnd 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 More sharing options...
SPECTRUM Posted November 14, 2015 Share Posted November 14, 2015 this is one of the most requested features and now people wants to delete it ? seriously wtf xD Link to comment Share on other sites More sharing options...
dMog Posted November 14, 2015 Share Posted November 14, 2015 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 More sharing options...
mastershake Posted November 14, 2015 Share Posted November 14, 2015 very first thing i do is kill defender. piece of garbage Link to comment Share on other sites More sharing options...
xyzdev Posted November 14, 2015 Share Posted November 14, 2015 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" /fIn this case you don't delete anything, just a simple rename to enable/disable. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.