0X80110817

COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED (0X80110817) Fix

Windows Errors Intermediate 👁 11 views 📅 May 28, 2026

This COM+ error pops up when you try to pause a recycled process. The fix is to let the process finish recycling or restart the COM+ application. Here's how.

I know this error is infuriating

You're sitting there, trying to pause a COM+ application in Component Services, and bam—0X80110817. The message says a recycled process can't be paused. I've been there. It feels like the system is laughing at you. But the fix is straightforward.

The Fix: Force Restart the COM+ Application

Skip the pause button. It won't work when the process is mid-recycle. Instead, you need to restart the application. Here's how:

  1. Open Component Services (run dcomcnfg from Start or a command prompt).
  2. Expand Component Services > Computers > My Computer > COM+ Applications.
  3. Right-click the problem application and select Shut down. Yes, shut it down—not pause.
  4. Wait 10 seconds, then right-click it again and choose Start.

That's it. The error won't reappear because you've killed the recycled state entirely. I've used this on Windows Server 2016 and 2019 with the same result every time.

Why This Happens

The error occurs because COM+ applications can recycle automatically—by default, every 15 minutes or after a certain number of method calls. When you try to pause a process that's already in the middle of recycling, the COM+ runtime refuses. It's a safety lock: pausing a partially recycled process could leave orphaned threads or corrupted state. Microsoft designed it to protect stability, but it feels like a brick wall when you're trying to manage things.

The real trigger is often a server that's been running for days. Recycling happens silently, and you don't notice until you open Component Services to make a change. I've seen it most on busy IIS servers running COM+ components for ASP.NET apps.

What If Shutting Down Doesn't Work?

Sometimes the application won't shut down either. That usually means a hung process. Try this:

  1. Open Task Manager and find the dllhost.exe process with the same Application ID as your COM+ app. You can match it by looking at the Command Line column—each COM+ app runs in its own dllhost.exe with a unique GUID.
  2. Right-click that dllhost.exe and select End task. Forcefully kill it.
  3. Go back to Component Services, right-click the app, and start it fresh.

This works when the COM+ admin snap-in is stuck in a loop. I've had to do this on a client's Windows Server 2012 R2 box after a patch Tuesday update left things messy.

Prevention: Tweak Recycling Settings

You can't avoid recycling entirely—COM+ needs it to clear memory leaks from buggy components. But you can reduce how often it happens, which cuts down the chances of hitting this error.

  • Disable automatic recycling if your component is stable. In Component Services, right-click the app > Properties > Pooling & Recycling tab. Uncheck Recycle after a period of inactivity and Recycle after a number of method calls. Set lifetime recycling to 1440 minutes (24 hours) instead of the default 15.
  • Increase the number of methods before recycle. If you can't disable it, raise it to 100000 or more. This spreads out recycling events during low-traffic hours.
  • Monitor recycling events in Event Viewer under Applications and Services Logs > Microsoft > Windows > COM+. Look for event IDs 1001 (recycle started) and 1002 (recycle completed). If you see them every few minutes, something's triggering excessive recycling—maybe a memory leak in the component itself.

One more thing: if you're automating COM+ management with PowerShell, never call Pause on a process that could be recycling. Use Stop and Start instead. This script snippet does the trick:

$comApp = Get-WmiObject -Namespace root\COM2 -Class COMElement | Where-Object { $_.Name -eq "YourAppName" }
$comApp.Shutdown()
Start-Sleep -Seconds 5
$comApp.Start()

That's the whole story. The error looks scary, but it's just COM+ being protective. Shut it down, start it up, and move on with your day.

Was this solution helpful?