Skip to content
Join readers who trust AllThings.How for practical guides Opens in a new tab

AIXHost.exe "application is exiting" error on Windows 11: How to fix it

Pallav Pathak
AIXHost.exe "application is exiting" error on Windows 11: How to fix it

The popup pointing to C:\Windows\SystemApps\MicrosoftWindows.Client.AIX_cw5n1h2txyewy\AIXHost.exe with the message "The application is exiting and cannot service this request" is tied to the Windows AI Experience Host, the background process that powers Recall and related on-device AI features on Windows 11. It tends to surface repeatedly on Copilot+ PCs such as the Lenovo Yoga Slim 7x, HP OmniBook, and Surface devices, and it often appears while using Word, Excel, Outlook, or just sitting on the desktop.

Quick answer: Open PowerShell as administrator and run Get-AppxPackage MicrosoftWindows.Client.AIX | Remove-AppxPackage, then restart. If the popup returns, turn Recall off under Control Panel → Programs and Features → Turn Windows features on or off, reboot, and re-enable it if you want it back.

What AIXHost.exe does and why it crashes

AIXHost.exe is the host process for the MicrosoftWindows.Client.AIX package, the AI Experience layer Windows 11 uses to understand on-screen content for features like Recall, Click to Do, and content discovery. When the host hits a fatal condition, Windows kills it and shows the "application is exiting and cannot service this request" dialog instead of letting the process hang.

The crash usually traces back to one of a small number of causes:

  • Recall snapshot database corruption or a failed write
  • Conflicts between Windows Search indexing and the AI host
  • An incomplete or broken cumulative update that left the AIX package in a bad state
  • Outdated NPU or chipset drivers on Snapdragon X Elite and X Plus hardware

It is not malware, and the file lives in a protected system location. Do not try to delete AIXHost.exe directly or download a "replacement" from a third-party site — that breaks the shell and can trigger 0xc000007b errors or a BSOD.


Fix 1: Reset the AIX component with PowerShell

This is the fix that works for most people because it forces Windows to tear down the broken package and re-register a clean copy on next sign-in.

Step 1: Press the Start button, type powershell, right-click Windows PowerShell, and choose Run as administrator. Accept the UAC prompt.

Step 2: Confirm the package is present by running Get-AppxPackage *AIX*. You should see an entry for MicrosoftWindows.Client.AIX.

Step 3: Remove it with Get-AppxPackage MicrosoftWindows.Client.AIX | Remove-AppxPackage and wait for the prompt to return.

Step 4: Restart the PC. Windows reinitializes the AIX component on login, which clears the configuration error that was causing the pop-up.

You'll know it worked when you go through a normal sign-in and reach the desktop without the AIXHost.exe dialog appearing.


Fix 2: Turn off Recall as a Windows feature

If the PowerShell reset doesn't stick, disabling Recall through the legacy Windows Features dialog has resolved the error for multiple users, including cases where every other troubleshooting step failed. You must be signed in as an administrator.

Step 1: Open the Start menu, type control, and open the classic Control Panel. Set the view to Large icons.

Step 2: Open Programs and Features, then click "Turn Windows features on or off" in the left pane.

Step 3: Uncheck Recall in the list, click OK, and let Windows apply the change.

Step 4: Restart (do not just shut down) the PC. The pop-up should be gone after the reboot.

If you want Recall back, repeat the steps and re-check the box. Many users report that the error doesn't return after this off-and-on cycle because the component is re-registered cleanly.


Fix 3: Disable the AI Host Fabric Service

The WSAIFabricSvc service is the communication layer between Windows and the AI host. A misconfigured service can keep restarting AIXHost.exe in a loop, which is what generates the repeated popups.

Step 1: Press Windows + R, type services.msc, and press Enter.

Step 2: Scroll to WSAIFabricSvc (also listed as AI Host Fabric Service). Double-click it.

Step 3: Set Startup type to Disabled, click Stop if the service is running, then Apply and OK.

Step 4: Reboot and watch for the dialog. If it doesn't return within a normal work session, the fix is holding.

Note: disabling this service also disables the on-device AI features that depend on it. Re-enable it (Automatic or Manual) if you want Recall and related Copilot+ functionality back.

Fix 4: Repair system files with SFC and DISM

If the AIX package is fine but supporting system files are damaged, the host will still fail. SFC and DISM repair the underlying component store that the AI framework depends on.

Step 1: Open Command Prompt or Windows Terminal as administrator.

Step 2: Run DISM /Online /Cleanup-Image /RestoreHealth first and let it finish. This pulls clean copies of damaged components from Windows Update.

Step 3: Then run sfc /scannow to verify and repair protected system files.

Step 4: Restart the PC once both scans complete.


Fix 5: Stop Windows Search if indexing is the trigger

Windows Search occasionally collides with the AI host while trying to index snapshot metadata. Stopping the service is a quick way to confirm whether indexing is the culprit.

Open services.msc, right-click Windows Search, and choose Stop. If the pop-up stops immediately, leave the service stopped temporarily and rebuild the index from Control Panel → Indexing Options → Advanced → Rebuild. Set the service back to Automatic (Delayed Start) afterward so the file search keeps working.


What to do if nothing works

For a small number of cases, none of the above resolves the issue. The two confirmed terminal fixes are an in-place repair install of Windows 11 (keeps files and apps) and, failing that, a clean reinstall, which has eliminated the error for users who exhausted every other option.

⚠️
Back up your data before any repair install or reinstall. An in-place upgrade keeps personal files and applications, but a clean install wipes the system drive.

Before going that far, make sure Windows is fully patched — open Settings → Windows Update → Advanced options → Optional updates and install anything listed there, including driver updates. On Snapdragon-based Copilot+ PCs, also update the NPU and chipset drivers through Lenovo Vantage or HP Support Assistant, since stale firmware on the Neural Processing Unit is a common root cause that no amount of Windows-side troubleshooting will fix.


Reference: which fix to try first

SymptomTry firstIf that fails
Popup appears at every sign-inPowerShell reset of AIX packageTurn Recall off in Windows Features
Popup tied to Word, Excel, or Outlook useOffice Online Repair, then PowerShell resetDisable WSAIFabricSvc
Popup after a recent Windows updateDISM + SFC, then check Optional updatesIn-place upgrade
Popup on a new Copilot+ PC (Snapdragon)Update NPU and chipset driversPowerShell reset of AIX package
Popup persists after every fix aboveIn-place repair installClean reinstall of Windows 11

The AIXHost.exe dialog is annoying, but it is purely a software-side fault in a component you can safely reset. Start with the PowerShell command, then escalate to the Recall toggle if needed — most people stop the popup at one of those two steps without losing any data or AI functionality.