Skip to main content
Willi32657786acfh
Participating Frequently
May 5, 2026
Question

Acrobat Processes hanging in Task Manager

  • May 5, 2026
  • 79 replies
  • 3102 views

Since 2 months ago we experience something weird with Adobe reader on our hosts.

Users are reporting that PDF files are not opening. I checked that and I found there are a few Adobe processes that running in the task manager.

When killing the processes and reopen the file it start to works.

We tried reinstall and updating a few times to the latest version. Nothing works.

 

Have you encountered this?

How to solve it?

 

Thanks.

    79 replies

    JennyXS
    Participant
    September 1, 2026

    I don’t know if this helps, but for the past year I have been unable to install adobe apps whenever I redo my comp. (every 3 months) Like you, it runs in task manager but does nothing. Through trial and error I found out my problem. I don’t know if it will help you. The first thing I do is take microsoft edge and edge webview2 off my comp, because I don’t use it. However for some reason adobe needs microsoft edge webview2 running in the background to install right. I don’t know why, it makes no sense. However everytime I install edge view back, adobe install works fine. Hope this helps with your problem. 

    Participant
    August 31, 2026

    We are experiencing this issue as well.

    I see that there was another update to Acrobat issued today, but no mention of this specific bug being resolved. Will install update and see if issue is resolved. 

    Here is what we have figured out so far - investigation still underway.

    We captured full ProcDump memory dumps while the issue was actively occurring on Acrobat 26.001.21789. The oldest lingering Acrobat.exe instance had been alive for approximately 2h25m. WinDbg shows an Acrobat UI thread blocked in a synchronous SendMessageW call while processing DDE (ProcessSyncDDEMessage / ProcessAsyncDDEMsg / DDEMLServerWndProc). Subsequent attempts to open PDFs spawned additional Acrobat.exe processes and eventually displayed “A running instance of Acrobat has caused an error.” Killing all Acrobat processes restores functionality. The issue is intermittent and returns later.

     

    Participant
    August 31, 2026

    Additional technical findings from our investigation

    I wanted to provide significantly more detail in case this reaches Adobe engineering. We were able to capture the affected workstation while the problem was actively occurring rather than after Acrobat had already been terminated.

    ENVIRONMENT / SYMPTOMS

    - Adobe Acrobat 64-bit
    - Version at time of capture: 26.001.21789
    - Windows 11 Enterprise, build 26100 family
    - Issue is intermittent and has affected several users in our environment.
    - Users open/close a large number of PDFs throughout the workday.
    - In this case the PDFs involved were being opened from a mapped network drive (S:).
    - This has not yet been proven to be network-share-specific, but both document launches captured during this occurrence were from S:.
    - Eventually PDFs stop opening normally.
    - Additional Acrobat.exe processes begin appearing.
    - The user receives:

      "A running instance of Acrobat has caused an error."

    - Killing all Acrobat.exe processes in Task Manager immediately restores functionality.
    - The problem eventually returns.

    DUMP COLLECTION

    While the workstation was in the broken state, we used Sysinternals ProcDump to manually capture full-memory dumps of every Acrobat.exe process that was still present.

    Example:

    procdump64.exe -accepteula -ma <PID> <dumpfile>

    This resulted in multiple dumps, including three Acrobat.exe parent/UI processes.

    PROCESS TIMELINE

    The most interesting process was:

    PID 28924
    Started: approximately 09:17:30
    Dump captured: approximately 11:42:33
    Process uptime at capture: 2h 25m 03s

    Its original command line was essentially:

    Acrobat.exe "S:\...\<PDF>.pdf"

    This appears to be the long-lived Acrobat instance that existed before the failure condition became obvious.

    Later, while Acrobat was already in the broken state:

    PID 29864
    Started: approximately 11:39:19
    Uptime when captured: approximately 3m 18s
    Command line:

    Acrobat.exe "S:\...\<another PDF>.pdf"

    PID 28928
    Started: approximately 11:41:40
    Uptime when captured: approximately 55 seconds
    Command line:

    Acrobat.exe

    (no PDF argument)

    I suspect the two newer processes may correspond to failed Acrobat launch / error-dialog instances rather than separate healthy Acrobat sessions.

    When the "A running instance of Acrobat has caused an error" dialogs appeared, they themselves appeared in the Windows taskbar as Adobe Acrobat windows.

    I cannot prove the dialog-to-PID relationship because I did not map the HWND back to a PID while the dialog was visible, so please treat that portion as an observation/hypothesis rather than a confirmed finding.

    WINDBG RESULTS - LONG-LIVED PID 28924

    This is the most significant finding.

    WinDbg identified Acrobat.exe as an application hang.

    The main process was not consuming excessive CPU. Its primary thread was waiting in:

    win32u!NtUserMsgWaitForMultipleObjectsEx

    More importantly, another Acrobat UI thread was caught blocked inside a synchronous Windows SendMessage call while processing DDE messages.

    The relevant stack from the full dump is:

    win32u!NtUserMessageCall+0x14
    user32!SendMessageWorker+0x382
    user32!SendMessageInternal+0x174
    user32!SendMessageW+0xef
    Acrobat!AcroRd32IsBrokerProcess+0xdff
    Acrobat!AcroRd32IsBrokerProcess+0x1e15
    Acrobat!GetWinstaDesktopInfo+0xdc6c
    Acrobat!GetWinstaDesktopInfo+0xdb70
    user32!DoCallback+0xc1
    user32!SvSpontExecute+0x12e
    user32!ProcessSyncDDEMessage+0xb8
    user32!ProcessAsyncDDEMsg+0x67
    user32!DDEMLServerWndProc+0x7f
    user32!UserCallWinProcCheckWow+0x356
    user32!DispatchMessageWorker+0x1dd
    Acrobat!CreateCoreWebview2EnvironmentSandbox+0x71395
    kernel32!BaseThreadInitThunk+0x17
    ntdll!RtlUserThreadStart+0x2c

    The synchronous SendMessage was targeting:

    HWND 0x00220f2c

    Register state at capture also showed RCX/RDI/R10/R11 referencing 0x220f2c while the thread was inside NtUserMessageCall.

    WinDbg had previously identified this same thread as:

    Is_UIThread
    BlockedIn_SendMessage: HWND 0x220f2c

    The thread's !gle output was:

    LastErrorValue: 0
    "The operation completed successfully."

    LastStatusValue: 0xc0000034
    "Object Name not found."

    I do NOT know whether the 0xc0000034 status is directly responsible for the hang, so I am including it only as raw diagnostic information.

    WHY THIS LOOKS LIKE AN EXISTING-INSTANCE / DDE PROBLEM

    Our current working theory is:

    1. A normal Acrobat instance launches and opens a PDF.
    2. That Acrobat process remains alive in the background.
    3. At some point its Windows message / DDE handling enters a bad state.
    4. The user later double-clicks another PDF.
    5. A new Acrobat process attempts to launch and/or hand the document to the existing Acrobat instance.
    6. Communication with the existing instance does not complete normally.
    7. Additional Acrobat.exe processes accumulate.
    8. The user eventually receives:
       "A running instance of Acrobat has caused an error."
    9. Killing all Acrobat.exe processes clears the condition because the stale/broken existing instance is removed.

    The fact that the oldest lingering process was captured specifically inside:

    SendMessageW
     -> ProcessSyncDDEMessage
     -> ProcessAsyncDDEMsg
     -> DDEMLServerWndProc

    seems highly relevant to the exact end-user symptom.

    OTHER MAIN PROCESSES

    We also analyzed PID 29864 and PID 28928.

    WinDbg also classified these as Acrobat application hangs and their primary UI threads were sitting in the same general Acrobat/Windows message-wait path:

    win32u!NtUserMsgWaitForMultipleObjectsEx
     -> Acrobat.exe
     -> Acrobat.exe
     -> ...

    However, neither of those newer dumps contained the same explicit:

    SendMessageW
    ProcessSyncDDEMessage
    ProcessAsyncDDEMsg
    DDEMLServerWndProc

    stack that appeared in PID 28924.

    That is another reason we currently believe PID 28924 is the important original/broken Acrobat instance, while the newer processes may simply be subsequent launch attempts encountering that bad instance.

    CPU / MEMORY

    Nothing currently suggests a traditional CPU or memory exhaustion problem.

    The long-lived Acrobat process had a peak committed-memory value of approximately 273 MB.

    The newer processes were also relatively small and largely idle.

    Thread CPU usage was minimal.

    This appears much more like a process waiting/deadlocking in IPC/message handling than Acrobat gradually consuming all system resources.

    ENDPOINT SECURITY

    For completeness, this environment uses Cortex XDR.

    The following Cortex modules were injected into Acrobat:

    cyinjct.dll
    cyvera.dll
    cyvrtrap.dll

    Version observed: 9.2.0.120

    However, we currently have no evidence implicating Cortex in this issue.

    The Cortex-owned threads visible in the dump were simply waiting in WaitForSingleObject and were not present in the abnormal Acrobat DDE/SendMessage stack.

    I am mentioning this only so Adobe engineering has the complete process environment.

    WINDOWS INSTALLER / MSI

    We also discovered a separate Acrobat installer issue on this workstation during investigation.

    Windows event logs have shown repeated Acrobat MSI self-reconfiguration attempts resulting in Error 1730 / status 1603.

    However, msi.dll was NOT loaded in any of the three main Acrobat processes captured during this broken state.

    Therefore, while the installer issue is real, we currently do not have evidence that it caused this particular failure and are treating it separately.

    NETWORK SHARE OBSERVATION

    One item we are still investigating is whether mapped/network-drive access contributes to the problem.

    The original long-lived process was launched to open a PDF from S:.

    The subsequent PID 29864 was also launched to open a different PDF from S:.

    We do not currently know whether the network location is causal, contributory, or simply reflects this user's normal workflow.

    We are going to start documenting whether affected users were opening PDFs from local storage or network shares when the condition begins.

    WORKAROUND

    Current reliable workaround:

    1. End all Acrobat.exe processes.
    2. Re-open the PDF.
    3. Acrobat immediately begins functioning again.

    No reboot is required.

    This strongly suggests that persistent process/session state is involved.

    CURRENT CONCLUSION

    Based on the dumps, my current working diagnosis is:

    Acrobat 26.001.21789 intermittently leaves a long-lived Acrobat.exe instance in a nonfunctional state. In the affected instance we captured, an Acrobat UI thread was blocked in synchronous SendMessage/DDE processing. Subsequent attempts to open PDFs appear unable to communicate correctly with the existing Acrobat instance, causing additional Acrobat.exe processes to launch and ultimately resulting in "A running instance of Acrobat has caused an error."

    This is still an investigation and I do not want to overstate causation. The DDE/SendMessage blockage is confirmed by the dump; exactly what causes Acrobat to enter that state is not yet known.

    We have retained the full ProcDump .dmp files.

    I do not want to publicly upload full process-memory dumps because they may contain document/user/environment data, but if an Adobe employee/engineer wants them, please provide an official/private secure upload method and I would be happy to provide the dumps.

    We are also testing the Acrobat update released today and will report whether the issue recurs.

    If anyone else experiencing this issue has captured dumps, I would be very interested to know whether you see threads involving:

    user32!SendMessageW
    user32!ProcessSyncDDEMessage
    user32!ProcessAsyncDDEMsg
    user32!DDEMLServerWndProc

    That could tell us whether multiple organizations are hitting the same failure path.

    Meenakshi0101
    Community Manager
    Community Manager
    September 1, 2026

    Hi Carefree_Radiance5e99,


    We are sorry to hear that you are experiencing the same issue.

    Thank you for sharing your detailed findings. We will pass it on to the product team.


    Thanks,

    Meenakshi

    Participant
    August 30, 2026

    We are still experiencing the issue on Adobe Acrobat 64-bit version 26.001.21771. Multiple Acrobat processes remain running in Task Manager, and users receive the error "A running instance of Acrobat has caused an error." The issue is occurring on several devices in our environment. It appeared to be resolved temporarily but returned after the latest update. Could Adobe confirm whether this is a known issue and provide an ETA for a fix? We are IMPACTED !!

    Meenakshi0101
    Community Manager
    Community Manager
    August 31, 2026

    Hi analytical_athlete675b,

     

    We are sorry for the trouble this may have caused.

    The team is aware of the issue and investigating this behavior on priority. However, it is taking time to resolve this. We will keep you updated on any progress and let you know when the fix is available.

    We appreciate your patience so far.

     

    Thanks,

    Meenakshi

    Participant
    August 20, 2026

    I’m having the same issue on multiple computers. I’m using the latest version of Acrobat (26.001.21789). The Acrobat’s stack up in the Task Manager and I have to close them out to get it to open.

    Amal Jaiswal
    Community Manager
    Community Manager
    August 20, 2026

    Hi ​@Optimistic_Genie9189 
    Hope you are doing well and thanks for reaching out. 

    This issue is already reported to our engineering team and they are actively working on it. We will keep this thread updated as soon as we  more information from the team. 

    Thanks for your understanding

    ~Amal

    Participant
    August 26, 2026

    We have been waiting on a fix for this for months. IS there any update from development on when this will be fixed? I have heard so many different fixes on line are they looking into them? 1. Disabling Protection Mode. 2 Run in Windows 8 compatibility mode. 3 Disabling New Adobe. These are just a few, so this needs to be elevated to a high priority I have this issue all throughout my company and it is making us want to look at something else to replace Adobe and get a different PDF reader. You will loose business soon.

     

    Participant
    August 18, 2026

    We’re having the issue here as well with 26.001.21789

    Meenakshi0101
    Community Manager
    Community Manager
    August 19, 2026

    Hi danw56321057,


    Thank you for reaching out and reporting this.

    We have informed the team about your concern. Since it occurs in the latest version, the team requires logs for further investigation. Please collect the process logs by following the steps outlined in the document linked here: Adobe Acrobat Diagnostics. Download the diagnostic tool from the bottom of the document shared. Once the logs are collected, please share the log ID.


    Thanks,

    Meenakshi

    daniels99296919
    Participant
    August 28, 2026

    Yeah thats not going to happen.You already have logs from previous builds and you should be able to replicate the issue anyway. Get the devs to get their shit together and fix this!!!

    Participant
    August 17, 2026

    I was able to avoid the recurring issue where Acrobat processes remain stuck and PDFs will not open by uninstalling the current release and rolling back to the base Acrobat DC version, 2021.001.20135.

    Because the unified installer normally prompts users who do not have an Acrobat Standard or Pro license to sign in, I set the following registry value to enforce Reader functionality:

    reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown" /v bIsSCReducedModeEnforcedEx /t REG_DWORD /d 1 /f

    I also disabled automatic updates so the affected version would not be reinstalled:

    reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown" /v bUpdater /t REG_DWORD /d 0 /f

    After applying these values and restarting Acrobat, the user was able to open PDFs normally again. This is only a temporary workaround while waiting for Adobe to provide a confirmed fix, particularly since remaining on an older version may carry security risks.

    It may be possible to patch up to a more recent but still unaffected version.

    Participant
    August 14, 2026

    Experiencing the exact same issue for + 2 months now. Ran the troubleshooter and submit the logs, please could i get assist with reviewing Log ID : cb6e8330-4834-41ae-b3e7-81381f20b414?

    The affected user’s rely heavily on Adobe and this issue is really impacting productivity.

     

    Participant
    August 14, 2026

    We are getting reports about the same issue happening with our users. These users open a lot of pdf files as a part of their job and have to constantly end the stuck background instances through Task manager. We have verified they are running the latest version of Adobe Pro DC. 

     

    angular_passion4ed6
    Participant
    August 12, 2026

    I’ve seen similar behavior with Acrobat where the application processes remain active in the background and prevent a new PDF from opening. Since ending those processes temporarily fixes it, it sounds more like a stuck Acrobat instance than an issue with the PDF files themselves.

    One thing worth checking is the exact Acrobat/Reader build. Adobe has addressed a similar issue in recent updates, so I’d make sure all affected machines are running the latest available build and restart them after updating.

    If it still happens, I’d also check whether the affected machines have anything in common, such as a particular Windows version, virtual desktop environment, security software, or browser workflow. That might help narrow down what is keeping the processes stuck.

     

    Amal Jaiswal
    Community Manager
    Community Manager
    August 11, 2026

    @ angular_calmness50f8 thanks for sharing the logs ID, we have passed it to our development team for futher analysis. We will keep you posted on the updates. 
    Thanks for your cooperation and understanding
    ~Amal