Guys anyone Script for remove windows defender permantly??? note not disable i need full remove thanks
https://forums.mydigitallife.net/th...fications-overview.83744/page-16#post-1682586 this is remove permantly? i think not i need remove not disable
So far afaik there's been nothing posted to remove Defender, but as you see there, several options to disable it. Sorry, don't know. If you tag in @freddie-o I'm sure he'll explain if his script disables or removes it. Update: His post says permanently disable and he warns. Warning: This process is irreversible!
I think you can remove with NTLite when you create costume Win ISO. There is option there I did yesterday. So when you install OS it will not install defender. I hope.
It does not completely remove Windows Defender but permanently disables it. It was also originally intended for offline mode. If you want to completely remove Windows Defender you can check out @zucrin 's script
Recommended Disable Defender Code: pushd "%~dp0" NSudoLC -U:T -P:E -Wait -ShowWindowMode:Hide powershell -command "& { Stop-Service -Name 'windefend' }" NSudoLC -U:T -P:E -Wait -ShowWindowMode:Hide sc config windefend start=demand reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /d 1 /t REG_DWORD /f sc qc windefend pause Enable Defender Code: reg delete "HKLM\Software\Policies\Microsoft\Windows Defender" /f sc start windefend pause Not recommended Defender probably can't be uninstalled non-invasively. Edit sc stop windefend and net stop windefend is detected by Defender Stop-Service in ps is undetected by Defender sc/net stop replaced by ps Stop-Service