That error is very consistent with an
Adobe Acrobat update getting stuck in a retry loop: the updater fails (can’t replace that DLL), but Windows Installer has already cached the patch(es) in
C:\Windows\Installer, so you end up with a big pile of ~1 GB
.msp files each time it tries again.
Goal: fix the Acrobat update/installation failure so it stops generating new MSP files.
1) Stop the update loop (quick containment)
- Reboot once.
- After reboot, do not open Acrobat yet.
- Open Task Manager and end anything Adobe/Acrobat-related you see (common ones):
Acrobat.exe, AcroCEF.exe, AcroTray.exe, AdobeCollabSync.exe, AdobeIPCBroker.exe
- Temporarily pause/disable any 3rd‑party antivirus (if installed), just for the update attempt.
2) Fix the “insufficient privileges” on that exact file/folder
Most often, the file is either
locked or the
ACL permissions on that folder/file got messed up.
A) Check the file’s permissions (recommended)
Go to:
C:\Program Files (x86)\Common Files\Adobe\Acrobat\WCIEActiveX\DC\
Right‑click
DC →
Properties →
Security →
Advanced.
You should normally see permissions that include at least:
- SYSTEM = Full control
- Administrators = Full control
If SYSTEM and/or Administrators are missing or restricted, that can trigger Error 1321.
B) Quick command-line fix (safer than random “take ownership” of all Program Files)
Open
Command Prompt (Admin) and run:
icacls "C:\Program Files (x86)\Common Files\Adobe\Acrobat\WCIEActiveX\DC\AcroIEFavClient.dll"
If you don’t see SYSTEM/Administrators with sufficient rights, run:
icacls "C:\Program Files (x86)\Common Files\Adobe\Acrobat\WCIEActiveX\DC\AcroIEFavClient.dll" /grant "SYSTEM:(F)" "Administrators:(F)"
(If it says “Access is denied”, tell me—then we’ll take ownership of
just that file and retry.
3) Re-run the Acrobat install/update properly
Because you’re on
Acrobat Pro subscription, the cleanest route is usually:
- Open the Adobe Creative Cloud Desktop app → Updates → update Acrobat
or
- Download the latest Acrobat installer (from Adobe) and Right‑click → Run as administrator.
If the update still fails,
uninstall + reinstall is often faster than fighting a broken patch chain.
4) If uninstall/reinstall is blocked: use Adobe’s cleanup tool
Adobe provides an
Acrobat Cleaner Tool specifically for stuck installs/updates. The typical sequence is:
- Uninstall Acrobat (Settings → Apps → Installed apps)
- Run the Acrobat Cleaner Tool
- Reboot
- Reinstall Acrobat (run installer as admin)
If you want, I can guide you through that, but first I’d try the permissions + run-as-admin update because it’s less disruptive.
5) After it’s fixed: deal with the new MSP pile safely
Once Acrobat updates successfully and stops retrying, you can reclaim space from
C:\Windows\Installer safely by using a tool like
PatchCleaner in
Move mode (move “orphaned” MSP/MSI to an external drive first, test for a couple weeks, then delete).
Two questions so I can tailor the next step:
1) Are you logged into Windows with an
Administrator account?
2) Do you have any
third‑party antivirus (Norton/McAfee/Bitdefender, etc.?
Also, please paste the output of this (Admin Command Prompt):
icacls "C:\Program Files (x86)\Common Files\Adobe\Acrobat\WCIEActiveX\DC\AcroIEFavClient.dll"
That will tell us immediately whether it’s a permissions/ownership issue vs. a file-locking issue.