Download windows defender uninstaller


Although there is no official way to cleanly uninstall Defender, it is possible to remove the service, Control Panel entry, other related registry entries and all the files and folders manually so Defender is unofficially removed from the system. This does present its own set of problems though as the registry keys, files and folders are all protected with enhanced permissions and you have to take ownership of them all. Also, once removed, you can’t re-install Defender again because it isn’t a separate package.

Simply download the portable Windows Defender Uninstaller and run it, then click the button to uninstall Defender. The lower pane will show what’s being deleted and if there are any errors. For best results, it’s best to disable Defender beforehand using one of the methods above. Please use this tool at your own risk as once Defender has been removed, it cannot easily be re-installed, make sure you have backups to hand in case you change your mind later on.

Limitations:
Will not work above Windows 7.

Screenshot for Windows Defender Uninstaller

Top Downloads In Specific (Stubborn) Removal Tools

Trellix Stinger (formerly McAfee Stinger) detects and removes specific viruses. Video tutorial and portable version available.

McAfee Consumer Product Removal Tool is designed for the complete removal of McAfee Security products in order to reinstall or install a different antivirus.

Kaspersky Virus Removal Tool is a portable app designed to scan and disinfect an infected computer from viruses and other malicious programs.

ZHPCleaner is a freeware app designed to scan for and remove adware, hijackers, toolbars, and PUPs that may be included with your browser for free.

Dr.Web Live Disk will clean your computer of infected and suspicious files.

 Tactical Briefings


Comment Rules & Etiquette — We welcome all comments from our readers, but any comment section requires some moderation. Some posts are auto-moderated to reduce spam, including links and swear words. When you make a post, and it does not appear, it went into moderation. We are emailed when posts are marked as spam and respond ASAP. Some posts might be deleted to reduce clutter. Examples include religion, politics, and comments about listing errors (after we fix the problem and upvote your comment). Finally, be nice. Thank you for choosing MajorGeeks.


© 2000-2025 MajorGeeks.com

❌️ Defender Remover / Defender Disabler

Defender Remover

❓️ What does the app do?

This application removes / disables Windows Defender, including the Windows Security App, Windows Virtualization-Based Security (VBS), Windows SmartScreen, Windows Security Services, Windows Web-Threat Service, Windows File Virtualization (UAC), Microsoft Defender App Guard, Microsoft Driver Block List, System Mitigations and the Windows Defender page in the Settings App on Windows 10 or later.

❓️ What components are removing?

Removing Security Components

This script removes/disables following security components:
    - support for Windows Security Center including Windows Security Center Service (wscsvc), Windows Security Service (SgrmBroker, Sgrm Drivers) which are needed to run Windows Security App.
    - virtualization support.
        - Hypervisor startup (this fixes disablation of Virtualization Based Security, this will auto enable if you use Hyper-V and/or WSL (Windows Subsystem for Linux), WSA (Windows Subsystem for Android))
        - LUA (disables File Virtualization and User Account Control, which will run all apps as administrator priviliges (also fixes old app errors))
        - Exploit Guard (something about Exploits)
        - Windows Smart Control
        - Tamper Protection (for Windows 11 21H2 or earlier)
    - SecHealthUI (Windows Security UWP App)
    - SmartScreen
    - Pluton Support and Pluton Services Support
    - System Mitigations
      - "Services Mitigations" (search on admx.help for more informations, its policy)
      - Spectre and Meltdown Mitigation (for get +30% performance on old Intel CPUs)
    - Windows Security Section from Settings App.

Removing Antivirus Components

This script forcily removes following antivirus components:
  - Windows Defender Definition Update List (this will disable updating definitions of Defender because its removed)
  - Windows Defender SpyNet Telemetry
  - Antivirus Service
  - Windows Defender Antivirus filter and windows defender rootkit scanner drivers
  - Antivirus Scanning Tasks
  - Shell Associations (Context Menu)
  - Hides Antivirus Protection section from Windows Security App.

📃 Instructions

Note

A system restore point is recommended before you run the script. (if you don’t know what are you doing)

  1. Download the packed script from Releases
  2. Run the «.exe» as administrator
  3. Follow the instructions displayed

OR

you can use git

git clone https://github.com/ionuttbara/windows-defender-remover.git
cd windows-defender-remover
Script_Run.bat

OR

you can use download entire source code

  1. Download the source code from Releases.
  2. Choose the file Source Code(.zip) from last version and download it.
  3. Unarchive the file into a folder and run the Script_Run.bat.

You can file an issue if you experience any problems.

📃 Automation of the script

You can remove Defender with arguments.

Removing

# Removal
Defender.Remover.exe /r <# or /R #>

Disable or Remove Windows Defender Application Guard Policies (advanced)

If you have any problems when opening an app (extremely rare) and get the message «The app can not run because Device Guard» or «Windows Defender Application Guard Blocked this app», you have to remove 4 files with the same name, from different locations.

  • In EFI Partition
Remove-Item -LiteralPath "$((Get-Partition | ? IsSystem).AccessPaths[0])Microsoft\Boot\WiSiPolicy.p7b"
  • In Code Integrity Folder
Remove-Item -LiteralPath "$env:windir\System32\CodeIntegrity\WiSiPolicy.p7b"
  • In Windows Folder
Remove-Item -LiteralPath "$env:windir\Boot\EFI\wisipolicy.p7b"
  • In WinSxS Folder
Remove-Item -Path "$env:windir\WinSxS" -Include *winsipolicy.p7b* -Recurse

Creating an ISO with Windows Defender and Services disabled

You can create an ISO with Windoows Defender and Security Services Disabled. It’s easy, so this is a fiie which it can helps you.
Here are the rules:

  1. Mount the ISO and extract it into location.
  2. Open the sources folder and create the $OEM$ folder. (this is needed to run the DefenderRemover part in OOBE).
  3. Open the $OEM$ folder and create the folder with $$ name.
  4. Open the $$ folder and create the folder with Panther name.
  5. Open the Panther folder.
    The path it shown like to
    *%location of extracted ISO%\sources$OEM$$$\Panther*
  6. Download the unnatended.xml file from repo in ISO_Maker folder and put it in Panther folder.
  7. Save this as bootable ISO. (for now the script can’t do this automaticly, but it will do in next version).

❓ Frequently Asked Questions

⭕ How to remove Windows Security Center / Windows SecurityApp from PC without downloading Script?

Paste this code into a powershell file and after Run as Administrator.

$remove_appx = @("SecHealthUI"); $provisioned = get-appxprovisionedpackage -online; $appxpackage = get-appxpackage -allusers; $eol = @()
$store = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore'
$users = @('S-1-5-18'); if (test-path $store) {$users += $((dir $store -ea 0 |where {$_ -like '*S-1-5-21*'}).PSChildName)}
foreach ($choice in $remove_appx) { if ('' -eq $choice.Trim()) {continue}
  foreach ($appx in $($provisioned |where {$_.PackageName -like "*$choice*"})) {
    $next = !1; foreach ($no in $skip) {if ($appx.PackageName -like "*$no*") {$next = !0}} ; if ($next) {continue}
    $PackageName = $appx.PackageName; $PackageFamilyName = ($appxpackage |where {$_.Name -eq $appx.DisplayName}).PackageFamilyName 
    ni "$store\Deprovisioned\$PackageFamilyName" -force >''; $PackageFamilyName  
    foreach ($sid in $users) {ni "$store\EndOfLife\$sid\$PackageName" -force >''} ; $eol += $PackageName
    dism /online /set-nonremovableapppolicy /packagefamily:$PackageFamilyName /nonremovable:0 >''
    remove-appxprovisionedpackage -packagename $PackageName -online -allusers >''
  }
  foreach ($appx in $($appxpackage |where {$_.PackageFullName -like "*$choice*"})) {
    $next = !1; foreach ($no in $skip) {if ($appx.PackageFullName -like "*$no*") {$next = !0}} ; if ($next) {continue}
    $PackageFullName = $appx.PackageFullName; 
    ni "$store\Deprovisioned\$appx.PackageFamilyName" -force >''; $PackageFullName
    foreach ($sid in $users) {ni "$store\EndOfLife\$sid\$PackageFullName" -force >''} ; $eol += $PackageFullName
    dism /online /set-nonremovableapppolicy /packagefamily:$PackageFamilyName /nonremovable:0 >''
    remove-appxpackage -package $PackageFullName -allusers >''
  }
}

⭕ Why is the downloaded executable being flagged as a virus?

That is a false positive.

Some security apps flag this app as a virus because of the way the «.exe» files are created. Download with git or source code .zip will indicate virus-free.
Starting with Defender 12.6.x , some versions are considered as virus, some are not (its a bug from me, so do not file for this).

⭕ Why is the patch not working when Windows is updated?

Windows Update includes a Intelligence Update which blocks certain actions and modifies Windows Defender/Security policies.
If the script is not working for you, check if you have the Windows Security Intelligence Update installed. If you do, disable tamper protection, and re-run the script.

⭕ How to use the package remover without downloading the executable from the release?

Run the desired «.bat» file from cmd with PowerRun (by dragging to the executable). You must reboot for the changes to take effect.

⭕ How to disable VBS if the removal script does not work

Disable with this command and reboot.

bcdedit /set hypervisorlaunchtype off

Если понадобилось удалить встроенный защитник Windows, например он удаляет кряк и не дает активировать систему или просто хотим установить свой любимый антивирус которому мы доверяем больше и лишних процессов нагружающих систему нам не нужно.

Что нам даст удаление Защитника Windows? Удалив защитник мы освобождаем системные ресурсы, решим вопрос с удалением фалов без спроса, а также избавимся от “дырявого” антивируса, главное не забыть заменить его на надежный.

И так удалив Windows Defender Мы:

  • – Ускорим работу компьютера так как освободим ресурсы процессора и оперативную память, это особенно актуально для старых ПК да и новым не помешает.
  • – Решим вопрос с активаторами системы и удалением файлами, которые перестанут бесследно пропадать без вашего ведома.
  • – Освободим примерно 600 Мб., дискового пространства, немного, но возможно для кого-то и это хорошо.

Назвать защитника надежным нельзя, особенно вспоминая случай заражения хостинга сайта вредоносом который был замечен защитой самого хостинга. А чем был занят антивирус Windows в это время, наверное, отсылал отчеты в Microsoft.

Удалить защитник windows средствами самой системы не получиться, так как его удаление не предполагается. Для удаления защитника воспользуемся программой от стороннего разработчика.

Ссылка на официальный сайт утилиты вот тут.

Перед началом удаления нам нужно отключить функцию “Защита от подделки”.

Кликнув по защитнику, попадаем в главное окно “Кабинет”, жмем по иконке со щитом “Защита от вирусов и угроз”.

Пункт “Параметры защиты от вирусов и угроз”, под ним – Управление настройками, кликаем по нему.

Четвертый пункта “Защита от подделки”, перетягиваем ползунок в положение откл. 

Соглашаемся с предупреждением системы безопасности.

Все готово, теперь можно приступать к удалению защитника.

Распаковываем наш архив прямо на рабочий стол.

Нам нужно запустить файл DefenderKiller и нажать Да когда система безопасности попросит подтвердить действие.

Программа запустилась, интерфейс у нее довольно простой, нам нужно первое действие, поэтому жмем на клавиатуре 1 и Enter.

Программа проверила отключена ли защита от подделок, и предложила сделать резервную копию файлов антивируса на случай если мы передумаем. Нужна ли копия для восстановления решаем для себя сами.

Процесс запущен, программа удаляет службы, драйвера и папки, ждем завершения процесса удаления windows defender и перезагружаем систему.

Защитник может не удалиться с первого раза, утилита нам об этом сообщит и предложит сделать перезагрузку системы и повторить, поэтому жмем Нет на окне предупреждения и перезагружаемся.

После перезагрузки и повторного запуска утилиты мы видим что все прошло успешно, программа показывает список удаленных служб и папок защитника. Теперь можно установить свой любимый антивирус.

Как видите процесс удаления защитника windows довольно прост и не занимает много времени к тому же все изменения при наличии бэкапа можно откатить обратно. На этом все. Всем успехов!

Defender Remover

Defender Remover — простая утилита, предоставляющая удобный способ полного отключения Защитника Windows (11, 10, 8,1) вместе с соответствующими службами.
Хоть Windows Defender и является надежным антивирусом, но порой он может блокировать и удалять нужные файлы (например, активаторы). Его, конечно, можно отключить стандартными средствами, но это не совсем удобно. На выручку придет Defender Remover, который в несколько кликов полностью отключит Защитник вместе со службами безопасности.

Приложение не требует установки или настройки — просто скачайте его и запустите от имени администратора, чтобы избежать возможных ошибок, связанных с изменением системных файлов.

Интерфейс программы прост и в нем нужно лишь выбрать нужную опцию, набрав соответствующую букву. После выбора опции программа перезагрузит компьютер и приступит к внесению изменений.

Доступные функции Defender Remover:

  • Y — удаление Defender и Security Components (старый метод, нарушающий работу Windows Updates/UWP в некоторых версиях Windows, удаляющий файлы и снимающий с регистрации классы);
  • N — отключение Defender и Security Components (безопасно);
  • M — отключение только антивируса Defender (безопасно);
  • E — включение Defender (восстановление действий при нажатии M);
  • R — включение Защитника Windows и Security Components (восстановление действий при нажатии кнопки N);
  • J — модификация ISO-файла Windows путем удаления служб Defender.

Следует отметить, что утилита не только полностью отключает Defender, но и другие связанными с ним службами и процессами. Например, Windows Security App, Windows Smart-Screen, Windows Web-Threat Service, Microsoft Defender App Guard, Windows Virtualization-Based Security (VBS), Windows File Virtualization (UAC) и Windows Security Services.

Скачать бесплатно:

DefenderRemover 663 Kb

Пароль — 11111

  • Версия: 12.8;
  • Платформа: Windows 11 / 10 / 8.1;
  • Язык: Eng;
  • Размер: 663 Kb;
  • Лицензия: Freeware.

Важно! Пользователям с блокировщиками рекламы (AdBlock и подобными) не доступны ссылки на скачивание!

Top Download Club is proud to introduce the ultimate software solution for all your Windows Defender needs, the Windows Defender Uninstaller developed by RAYMONDCC TECH. If you’re looking for a great way to permanently uninstall Windows Defender from your system, this software is the perfect tool for you!
With straightforward instructions and an easy-to-use interface, Windows Defender Uninstaller allows you to quickly and easily remove all traces of Windows Defender from your computer. This powerful software guarantees that you’ll never have to deal with any unwanted pop-ups or notifications again.
Moreover, RAYMONDCC TECH’s Windows Defender Uninstaller is safe and reliable, and won’t cause any harm to your operating system. It’s been tried and tested by countless users, so you can trust that it won’t let you down.
Save yourself the hassle and frustration of dealing with Windows Defender by downloading Windows Defender Uninstaller today from Top Download Club. It’s an all-in-one solution that you won’t regret!

Keywords:

uninstall defender, Windows Defender, clean interface, streamlined performance, software removal, Windows Defender Uninstaller, Windows, Vista, RAYMONDCC TECH, Defender, Windows 7, security solution

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Почтовый клиент яндекс почта для windows
  • Как узнать пароль администратора в windows 10 через гостя
  • Что такое windows 64 bit msi
  • Как сделать свои значки для папок windows 10
  • Nokia lumia 2520 windows 10