windows defender advanced threat protection won't run

Nigel Barraclough 20 Reputation points
2026-09-01T13:36:32.5033333+00:00

I am getting a notification that windows defender isn't running. If I look at "Virus threat and protection" everything looks normal. If I run services.msc I can see that windows defender advanced threat protection is not running. If I try to start it it fails with Error 1067 the process terminated unexpectedly. I'm using Windows 11 Pro version 25H2. I have done DISM restore health and sfc /scannow. Any ideas how I can get ATP to run please?

Microsoft Security | Microsoft Defender | Other
0 comments No comments

Answer accepted by question author

AI answer

2026-09-01T13:36:52.58+00:00

For Windows 11 25H2, there is a known issue that can show incorrect notifications that Microsoft Defender Antivirus is turned off. Since Virus & threat protection looks normal, first determine whether this is only a false notification or an actual service problem.

  1. Restart the PC once if not already done.
  2. Check the core Defender services in an elevated PowerShell window:
Get-Service WinDefend, WdBoot, WdFilter, WdNisSvc, WdNisDrv, SecurityHealthService, wscsvc | Format-Table -Auto DisplayName, Name, StartType, Status

Expected defaults from Microsoft:

  • SecurityHealthService: Manual, Running
  • WdBoot: Boot, Stopped after boot is normal
  • WdFilter: Boot, Running
  • WdNisDrv: Manual, Running
  • WdNisSvc: Manual, Running
  • WinDefend: Automatic, Running
  • wscsvc: Automatic, Running

If those are in the expected state, the notification can be a display issue rather than Defender actually being off.

  1. Check for third-party antivirus and uninstall it completely if present. Microsoft specifically recommends uninstalling non-Microsoft antivirus software when Microsoft Defender Antivirus is the primary antivirus.
  2. Run Microsoft Safety Scanner to rule out malware.
  3. Reset Defender definitions and platform from an elevated Command Prompt:
MpCmdRun.exe -RemoveDefinitions -All
MpCmdRun.exe -ResetPlatform
  1. If policy corruption is suspected, back up Defender policy first, then remove Defender policy settings. Warning: this deletes Microsoft Defender Antivirus policy settings from the registry.

Backup:

New-Item -Path "C:\DefenderTemp" -ItemType Directory; Invoke-Command {reg export 'HKLM\SOFTWARE\Policies\Microsoft\Windows Defender' C:\DefenderTemp\_DefenderAVBackup.reg}

Remove policy:

Remove-Item -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender' -Force

After clearing policy, run the onboarding steps again if the device is managed for Defender for Endpoint.

  1. Verify Tamper Protection is enabled.
  2. Run Microsoft Update so Defender components and intelligence are refreshed.
  3. If the issue is only the incorrect “turned off” notification on Windows 11 25H2, Microsoft documents a workaround involving the inpoutx64 driver. Warning: this requires a registry change, so back up the registry first. The documented workaround is:
  • Open HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\inpoutx64
  • Change Start to 4
  • Restart the PC
  1. If the Defender service still cannot be started from services.msc, note any exact error shown there and contact Microsoft Support with that error information.

A useful event log check is Windows Defender – Operational for:

  • Event 5007: Defender configuration changed
  • Event 5001: Real-time protection was disabled

References:

AI-generated content may be incorrect. Read our transparency notes for more information.

Was this answer helpful?

1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Nigel Barraclough 20 Reputation points
    2026-09-01T14:24:52.3033333+00:00

    Powershell showed everything in expected state - so it is the known issue. Thank you.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.