Adobe Acrobat / Creative Cloud freezing the context menu
Published September 2026, Acrobat, Reader, and Creative Cloud on Windows 11 / 10
Right-click a PDF (or sometimes any file) and Explorer goes white, “Not responding,” then the menu finally appears with Adobe entries. That pattern usually means an Adobe shell extension is blocking the UI thread inside explorer.exe.
The usual suspects are Acrobat/Reader context handlers often associated with AcroExt / Acrobat Elements, plus leftover Creative Cloud desktop integrations. You do not need to remove Photoshop or Acrobat to fix the freeze.
How Adobe hooks Explorer
Adobe products register COM-based shell extensions so Explorer can show items like Open with Acrobat, Convert to Adobe PDF, Edit with Photoshop, or cloud-related actions. Those DLLs live under Program Files\Adobe or Common Files\Adobe and load when Explorer builds the menu.
Typical pain points:
- AcroExt / Acrobat shell extensions on
.pdfand sometimes on* - PDF Maker related Office add-ins (those hurt Word more than Explorer, but installers may ship shell pieces too)
- Creative Cloud desktop helpers that touch files under cloud-synced folders
- License or sign-in checks that wait on the network before returning from
QueryContextMenu
On Windows 11 24H2 and 25H2, a three-second Adobe stall feels like a full Explorer hang because the modern menu waits on handlers before it paints cleanly.
If Explorer actually crashes (restarts desktop) rather than freezing, capture the faulting module with Find which shell extension is crashing Explorer.
Quick isolation tests
- Right-click a
.pdfon a local SSD. Note the delay. - Right-click a
.txtin the same folder. If only PDFs freeze, Acrobat’s PDF-scoped handler is likely. - Right-click inside an Adobe Creative Cloud Files folder vs a plain Documents folder. Cloud-folder-only lag points at Creative Cloud sync integration rather than AcroExt alone.
- Disconnect the network briefly and retest. If freezes disappear offline, a license or cloud call is blocking.
Fix 1: Acrobat installer / feature removal
For classic desktop Acrobat or Reader installers:
- Settings → Apps → Adobe Acrobat (or Acrobat Reader) → Modify / Change.
- Choose Modify if the installer offers feature selection.
- Disable Context menu / Explorer integration / Acrobat shell extensions if listed (labels vary by version).
- Finish the modify setup and reboot or restart Explorer.
- Retest PDF right-click.
If Modify has no shell option, use ShellExView next. Do not jump straight to uninstall.
Creative Cloud Desktop: open preferences and disable unnecessary file sync overlays or integrations if your build exposes them. Many CC versions still require ShellExView for the actual COM handlers.
Fix 2: Disable AcroExt and Adobe handlers in ShellExView
- Download or open ShellExView as Administrator.
- Options → Hide All Microsoft Extensions.
- Sort by Company or search (
Ctrl+F) forAdobe,Acrobat,AcroExt,PDF. - Disable Context Menu type entries from Adobe first (F7).
- Restart Explorer from ShellExView or Task Manager.
- Test right-click on PDF and non-PDF files.
Keep Acrobat as the default PDF app. Double-click should still open Reader/Acrobat.
Cross-check unfamiliar Adobe DLL names in the DLL checker.
Binary search when Adobe is one of many
Design machines often run Adobe + NVIDIA + Dropbox + Office handlers together:
- Disable half of all non-Microsoft context menu extensions.
- Restart Explorer; reproduce the freeze.
- Narrow by halves until one Adobe DLL (or a small Adobe group) remains as the cause.
- Re-enable non-Adobe handlers so you only pay for the fix you need.
Same workflow as Disable shell extensions on Windows 11.
Fix 3: Preview pane and thumbnail interaction
Sometimes the freeze is not the context menu alone. Acrobat also ships preview-related components. If selecting a PDF in Explorer hangs before you even right-click:
- In Explorer, turn off the Preview pane (View → Preview pane).
- Retest selection and right-click.
- If preview was the hang, treat it as a preview handler problem (see the thumbnail vs preview guide in this series) and disable Adobe preview handlers in ShellExView under types related to preview / IPreviewHandler.
Context menu can still be slow independently; fix both if both fail.
Fix 4: Registry leftovers (careful)
After moving from Acrobat Pro to Reader, or after a failed CC uninstall, orphan CLSIDs remain.
Inspect (export key first):
HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers
HKEY_CLASSES_ROOT\.pdf\shellex\ContextMenuHandlers
HKEY_CLASSES_ROOT\SystemFileAssociations\.pdf\shellex\ContextMenuHandlers
Remove only handler keys that ShellExView already showed as Adobe/AcroExt and that point to missing or unwanted CLSIDs. If the DLL path still exists and you might re-enable later, prefer F7 disable over deletion.
Also scan:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers
for Adobe cloud overlays. Renaming with a z prefix demotes overlays without deleting them (Windows loads a limited number of overlays).
Version and update tips
- Update Acrobat / Reader through Creative Cloud or Adobe’s updater. Old AcroExt builds misbehave more often after 24H2/25H2 Explorer changes.
- Avoid stacking Acrobat Pro, Reader, and third-party PDF printers all registering PDF menus.
- If you only need reading, Reader with shell menus disabled is enough; create PDFs from the Print dialog when required.
When Adobe is innocent
If all Adobe context and preview handlers are disabled and freezes continue:
- Check Windows 11 context menu slow fix for non-Adobe causes.
- Test archivers (
rarext.dll,7-zip.dll) and cloud drives next. - Confirm the hang is not a broken shell extension elsewhere via binary search.