Remove updates from Microsoft Defender

petrus

Member
1697811611019.png
comprei a versão paga para fazer melhorias mais especificas, tem alguma forma de remover essas duas atualizações do microssoft defender?
 
Does it include a version for more specific features, as well as a way to remove updates from Microsoft Defender?1697811817471.png
 
Why remove Defender updates, instead of installing the latest Platform and Definitions (from Updates downloader)?

The goal is to keep Defender current when it runs the first time, to better protect your PC from known threats. If you're asking to completely remove Defender, which would include all updates, then it's a different NTLite feature request.
 
but that's exactly what I want to do, because in my entire project I completely disable the Windows defender feature, and everything I found associated with it, as the iso is an iso that will only be for personal use, I currently use Windows on my machine Defender completely disabled, so if I manage to remove these two present updates, which are not giving me the possibility to remove them, I would certainly be reducing the present resources even further, after all, all the other service options and the like, on Windows Defender , are disabled throughout my project, so having these two updates would be unnecessary, and in fact I believe it is better to remove them, at least I will do the tests, if it doesn't look good, I will reverse this step, but as the iso is an iso just for me, I will try to do it this way, and if I later publish something on the forum about the method I made to the iso, I will make it clear to users that I completely removed Windows Defender, Security Center, everything that includes it, and if the user wants to reactivate it, they can feel free, I may not understand much about the application or the programming, but I've been playing for over 10 years, and I used my Windows as much as possible to get performance, which led me to years, I got used to not using Windows Defender, and for me there is no problem.

unless you explain to me that it will cause a problem, due to something, compatibility or something with Windows resources, but beforehand I make it clear that I am trying to remove it completely from the system
 
edit: I tried to add the command line to the xml file to perform the first step of creating the iso, updates
<Command>
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/ State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DoNotIncludeUpdates>
<ID>KB890830</ID>
<ID>KB2267602</ID>
</DoNotIncludeUpdates>
</component>
</Command>

I tried adding " <Command> " to "<PostUpdates>" in the .xml file but when I make the change, ntlite won't let me load the xml file to the system image
 
edit: I inserted a script in "task-maquina" with the intention of uninstalling both packages:


@echo off
echo Uninstalling updates...
wusa /uninstall /kb:KB890830 /quiet /norestart
wusa /uninstall /kb:KB2267602 /quiet /norestart
echo Updates removed.

remembering to save the file in .cmd or .bat
and enter post installation in the "machine" tab

result: success in removing both updates

remembering that: content only for users who wish to completely remove the component from their system to use another anti-virus.
 
Back
Top