Gary Fuhrman
Member
- Joined
- Dec 16, 2025
- Messages
- 9
- Thread Author
-
- #1
Shortly after i moved ALL my music and video files and many documents off my 466 GB SSD drive free up over 100 GB of space, it's been rapidly filling up without my adding any new files to it. I followed all the advice i could get from Microsoft without any result, and now only 40 GB left free. I notice the Windows folder on the drive is taking up 345 GB! Any suggestions how i can handle this?
Solution
Good find — those .msp files are Windows Installer patch files (patch installers). Important: do NOT just start deleting them from C:\Windows\Installer. They’re used by Windows and installed programs for uninstall/repair/patching and removing them blindly can break uninstall/repair, block future updates, or make programs unpatchable. We’ll free space safely instead.
Safe plan — what I recommend
Safe plan — what I recommend
- Pause and back up first (very important)
- Make a copy/image of the system or at least copy C:\Windows\Installer to an external drive BEFORE removing anything. That lets you restore if something breaks.
- Identify which .msp files are orphaned (don’t match any installed product)
- Easiest safe approach: use a...
- Joined
- Mar 14, 2023
- Messages
- 97,282
Hi Gary — sorry you’re fighting a disappearing SSD. A Windows folder that large (345 GB) is almost always one of a few known culprits (previous Windows installation files, WinSxS/component store, update caches, large VHD/VHDX files from WSL or VMs, shadow copies / restore points, pagefile/hiberfil, or other hidden system caches). Let’s do a quick, safe diagnostic and then clean the usual offenders.
Short plan
1) Inspect what’s actually using space (WinDirStat/TreeSize).
2) Check shadow copies / restore points (vssadmin).
3) Check component store (WinSxS) and run DISM cleanup if needed.
4) Look for large VHD/VHDX (WSL) and search for other big hidden files (Windows.edb, pagefile, hiberfil).
5) Safe cleanup steps (Disk Cleanup / Storage Sense / remove Windows.old / clear update cache).
Before you start: back up any irreplaceable files (external drive or cloud) and make sure you have admin rights.
Step‑by‑step (copy/paste these)
1) Find the big folders visually (fastest and safest)
3) Check Windows component store (WinSxS)
Short plan
1) Inspect what’s actually using space (WinDirStat/TreeSize).
2) Check shadow copies / restore points (vssadmin).
3) Check component store (WinSxS) and run DISM cleanup if needed.
4) Look for large VHD/VHDX (WSL) and search for other big hidden files (Windows.edb, pagefile, hiberfil).
5) Safe cleanup steps (Disk Cleanup / Storage Sense / remove Windows.old / clear update cache).
Before you start: back up any irreplaceable files (external drive or cloud) and make sure you have admin rights.
Step‑by‑step (copy/paste these)
1) Find the big folders visually (fastest and safest)
- Install and run WinDirStat or TreeSize Free (both show a visual breakdown so you can click into the big blocks and see exact paths). This will immediately show whether C:\Windows\WinSxS, C:\Windows\SoftwareDistribution, C:\Windows.old, a VHDX, or another folder is the space hog. Do this first.
- Open an elevated Command Prompt (Run as administrator) and run:
vssadmin list shadowstorage
That shows how much space VSS is reserving. If it’s dozens of GB you can reduce it, or delete old shadow copies (but that removes restore points). Guidance for this step is commonly recommended.
3) Check Windows component store (WinSxS)
- In an elevated Command Prompt run:
DISM.exe /Online /Cleanup-Image /AnalyzeComponentStore
If it says the component store can be cleaned, run:
DISM.exe /Online /Cleanup-Image /StartComponentCleanup
For a deeper (irreversible) cleanup:
DISM.exe /Online /Cleanup-Image /StartComponentCleanup /ResetBase
This is the supported way to shrink WinSxS after lots of updates; it can reclaim many GBs but /ResetBase prevents uninstalling earlier updates afterwards.
- Open Disk Cleanup as admin (Start → Disk Cleanup → select C: → “Clean up system files”) and check “Previous Windows installation(s)” and “Windows Update Cleanup”. That safely removes Windows.old and update installers. Storage Sense / Cleanup Recommendations can also help but Disk Cleanup (system files) is the classical route.
- Run these searches in an elevated PowerShell or use Everything search:
- Search for large virtual disks: .vhdx, .vhd, *.vmdk
- Search for Windows search DB and other big files: Windows.edb (ProgramData\Microsoft\Search), pagefile.sys, hiberfil.sys
- Example PowerShell to list top 20 largest files:
WSL’s ext4.vhdx (often in %userprofile%\AppData\Local\Packages*wsl*\LocalState) can be very large and will show up here if present.Code:Get-ChildItem -Path C:\ -Force -Recurse -ErrorAction SilentlyContinue | Where-Object { -not $_.PSIsContainer } | Sort-Object Length -Descending | Select-Object FullName, @{Name='MB';Expression={[math]::Round($_.Length/1MB,2)}} -First 20
- If you don’t use hibernate, turn it off to remove hiberfil.sys:
powercfg /hibernate off
That frees roughly the size of RAM. For pagefile.sys, Windows usually manages it; moving or shrinking it is possible but riskier — ask before changing.
- Stop Windows Update service, delete SoftwareDistribution\Download contents, restart service:
This removes downloaded update installers and can free space. (Disk Cleanup also covers this.Code:net stop wuauserv rd /s /q C:\Windows\SoftwareDistribution\Download net start wuauserv
- Disk Cleanup (system files) will remove it safely. If it’s confirmed you don’t need to revert an upgrade/major update, delete it.
- It may be a process creating large temporary files or a background backup service. Use Resource Monitor / Process Explorer and check Disk activity (which processes are writing most). Any backup software, VM software, or OneDrive sync settings? Also check OneDrive Files On‑Demand: Storage Sense can convert local OneDrive files back to online‑only to free space.
- Run WinDirStat (or TreeSize) and tell me which top folders inside C:\Windows (or other folders) are largest — or paste a screenshot of the WinDirStat treemap.
- Paste the output of:
vssadmin list shadowstorageandDISM.exe /Online /Cleanup-Image /AnalyzeComponentStore(if you run it).
If you paste those outputs I’ll give exact cleanup commands tailored to the results.
- Always use Disk Cleanup (system files) to remove Windows.old and update cleanup rather than deleting system folders manually.
- Don’t delete WinSxS files by hand — use DISM.
- Reducing shadow storage or deleting restore points will remove restore options — back up first if you want to keep points.
Gary Fuhrman
Member
- Joined
- Dec 16, 2025
- Messages
- 9
- Thread Author
-
- #4
OK, running WinDirStat shows the culprit to be the Installer folder, hundreds of .msp files each almost a GB! Can i just delete them all?
- Joined
- Mar 14, 2023
- Messages
- 97,282
Good find — those .msp files are Windows Installer patch files (patch installers). Important: do NOT just start deleting them from C:\Windows\Installer. They’re used by Windows and installed programs for uninstall/repair/patching and removing them blindly can break uninstall/repair, block future updates, or make programs unpatchable. We’ll free space safely instead.
Safe plan — what I recommend
Safe plan — what I recommend
- Pause and back up first (very important)
- Make a copy/image of the system or at least copy C:\Windows\Installer to an external drive BEFORE removing anything. That lets you restore if something breaks.
- Identify which .msp files are orphaned (don’t match any installed product)
- Easiest safe approach: use a well-known tool (PatchCleaner) to detect “orphaned” files and either move them to another drive (recommended) or flag them. Don’t delete immediately — move them and test for a couple of weeks. (If you prefer not to use third‑party tools I’ll show a PowerShell way to list the largest .msp files and we can inspect names first.
- Safer workflow (recommended)
- Run PatchCleaner and choose “Move orphaned files” to an external drive/folder. Leave them there for 2–4 weeks while you use the PC normally. If nothing breaks, you can delete them from the external backup later. Always keep a system image until you’re confident.
- If you see an uninstall or repair fail after moving a file, restore that file from the external location and try again.
- Use built‑in cleanup first
- Run Disk Cleanup as Administrator (Start → type Disk Cleanup → right‑click → Run as administrator → choose C: → click “Clean up system files”) and select Windows Update Cleanup / Previous Windows installation(s) etc. This is safe and supported.
- If many .msp belong to a specific app (e.g., MS Office), consider uninstalling that app completely and reinstalling a single current copy — that will remove old patches properly.
- List the 50 biggest .msp files (copy/paste into an elevated PowerShell window):
Paste the top 20 lines here and I’ll help identify where they came from.Code:Get-ChildItem -Path C:\Windows\Installer -Filter *.msp -Force -Recurse ` | Sort-Object Length -Descending ` | Select-Object Name, FullName, @{N='MB';E={[math]::Round($_.Length/1MB,2)}} -First 50 - If you prefer to try PatchCleaner I can guide you through safe usage (download, run scan, use Move mode, verify files were moved to external drive, then monitor).
- Those .msp files serve uninstall/repair and update rollbacks. Deleting them can cause errors when you try to uninstall or repair an app, or when Windows/patches try to rollback updates. Always move-or-backup first, test, then permanently delete only after confirming nothing depends on them.
- Do you want to:
A) Run the PowerShell command above and paste the top results so I can identify likely-orphaned files?
B) I walk you through PatchCleaner (move mode) and how to back up safely?
C) Or do you already have a backup and want a script to delete files older than X months (higher risk)?
Gary Fuhrman
Member
- Joined
- Dec 16, 2025
- Messages
- 9
- Thread Author
-
- #6
Copying the Installer folder to external drive is taking quite a long time. After that i will run Disk Cleanup as administrator, see what happens and get back to you. Thanks for the help so far.
- Joined
- Mar 14, 2023
- Messages
- 97,282
Sounds good — you’re doing the safe thing by copying first. A few quick tips while that copy finishes and for the steps after Disk Cleanup:
During the copy
During the copy
- Let it finish uninterrupted — large folders with many small files take a long time. Antivirus can slow it; if you trust the backup drive you can temporarily pause real‑time AV scanning (remember to re-enable it).
- If the copy fails or stalls, stop and use robocopy (reliable, resumable). Example from an elevated Command Prompt:
robocopy "C:\Windows\Installer" "E:\InstallerBackup" /E /COPYAT /R:2 /W:5 /V /LOG:C:\InstallerCopy.log
- After the copy completes, verify sizes match. In PowerShell (run as admin) you can compare summed bytes:
$s=(Get-ChildItem -Path C:\Windows\Installer -Recurse -Force | Measure-Object Length -Sum).Sum; $d=(Get-ChildItem -Path E:\InstallerBackup -Recurse -Force | Measure-Object Length -Sum).Sum; $s, $d - If the two numbers match (or are very close), the backup is good.
- Use Start → Disk Cleanup → right‑click → Run as administrator → select C: → check “Windows Update Cleanup”, “Previous Windows installation(s)” (if present), and other temporary categories. Let it finish.
- After it completes, reboot and then run WinDirStat again to confirm reclaimed space and that C:\Windows\Installer is still the large folder (or reduced).
- Don’t panic — you can restore individual .msp files from your external backup by copying them back into C:\Windows\Installer and then rerun the uninstall/repair. If you moved the whole folder back and still have problems, restore the entire backup.
- If an error appears for a specific program, try Repair from Programs & Features first; if that fails restore the corresponding .msp from your backup.
- Keep the external backup for at least 2–4 weeks while you use the PC normally. If nothing fails, you can permanently delete the backup (or keep an image/archive elsewhere).
- Tell me what Disk Cleanup removed and the new free space. If more is needed we can:
- Run DISM component cleanup (DISM /Online /Cleanup-Image /StartComponentCleanup)
- Check shadow storage (vssadmin list shadowstorage) and reduce if necessary
- Use PatchCleaner in “move” mode (it will move orphaned .msp/.mst files to your backup drive) — I can walk you through that.
- The WinDirStat treemap or the top 20 results of the PowerShell listing I gave previously, and
- The change in free space after Disk Cleanup.
Gary Fuhrman
Member
- Joined
- Dec 16, 2025
- Messages
- 9
- Thread Author
-
- #8
I got impatient after Disk Cleanup did nothing in the Installer folder, so i just deleted a couple hundred of the biggest files in it (using File Explorer via WinDirStat). Now my C drive has 240 GB free and we'll see if i messed up anything ...
- Joined
- Mar 14, 2023
- Messages
- 97,282
Good — glad you got space back. Since you deleted those .msp files manually (against the safer move/backup workflow), here’s what to do next to minimize risk and fix any problems if they appear.
1) Immediate checklist — don’t panic
1) Immediate checklist — don’t panic
- Leave the system alone for now and don’t delete your external backup yet. Keep it for at least 2–4 weeks while you verify everything works.
- Many programs will continue to run fine until you try to repair/uninstall/update them. The biggest risk is only when an app or Windows needs those .msp files.
- Open several programs you use often (Office, Adobe, antivirus, any specialized apps) and perform basic actions.
- Run Windows Update (Settings → Update & Security → Windows Update) and let it check/download/install any updates. Watch for installer/patch errors.
- Try one or two app uninstalls or repairs (Programs & Features → select app → Repair/Uninstall) — don’t do all of them, just test one to see if an error appears. If you see an error about a missing installer patch or missing file, note the file name.
- Restore the specific .msp/.msi from your external backup back into C:\Windows\Installer. That usually fixes the issue immediately. Use File Explorer with admin privileges or an elevated robocopy for reliability:
- Example (open an elevated Command Prompt and run):
robocopy "E:\InstallerBackup" "C:\Windows\Installer" *.msp /COPYAT /R:2 /W:5 /V /LOG:C:\InstallerRestore.log - Or to restore everything (slower):
robocopy "E:\InstallerBackup" "C:\Windows\Installer" /E /COPYAT /R:2 /W:5 /V /LOG:C:\InstallerRestore.log
- Example (open an elevated Command Prompt and run):
- After restoring, retry the failing uninstall/repair/update.
- Look in Event Viewer (Windows Logs → Application) for MsiInstaller or Windows Installer errors — they commonly include the missing filename. Use that filename to restore from your backup.
- If several apps fail or major components are broken, consider restoring the entire Installer folder from your backup (robocopy restore command above).
- In an elevated Command Prompt run:
- sfc /scannow
- DISM /Online /Cleanup-Image /RestoreHealth
These won’t restore deleted .msp files from Installer, but they can fix Windows component issues and are good hygiene after big changes.
- If you can’t restore a specific .msp (missing from the backup) and the program is still broken, reinstalling the program from the original installer will recreate the necessary installer cache entries.
- Keep that external backup for 2–4 weeks. If nothing breaks, you can delete the backup or archive it elsewhere.
- Going forward, don’t delete files directly from C:\Windows\Installer. Use PatchCleaner (or the move-then-test method) or rely on Disk Cleanup and DISM to remove update/component files safely. If space becomes tight again, I can walk you through PatchCleaner or a controlled cleanup plan.
- Guide you through restoring the entire Installer folder from the backup (if you decide you want to undo the deletions).
- Help run sfc /scannow and DISM and interpret results.
- Show how to use Event Viewer to find the exact missing .msp name if an uninstall/update errors.
- Are any programs currently failing (errors when launching, uninstalling, or updating)?
- Do you want to restore the whole folder now or wait and only restore if/when a problem arises?
Gary Fuhrman
Member
- Joined
- Dec 16, 2025
- Messages
- 9
- Thread Author
-
- #10
OK, Thanks.
- Joined
- Mar 14, 2023
- Messages
- 97,282
You’re welcome — glad you recovered space. A quick checklist and a few safe next steps while you monitor the PC for the next 2–4 weeks.
What to keep doing for the next 2–4 weeks
What to keep doing for the next 2–4 weeks
- Keep your external backup of C:\Windows\Installer until you’re certain nothing breaks.
- Use the PC normally: open apps you use, run Windows Update, and try one or two app repairs/uninstalls (not all at once). If something fails you can restore the offending file(s).
- Check Event Viewer → Windows Logs → Application for MsiInstaller or Windows Installer errors — the event usually names the missing .msp/.msi.
- Restore that specific file from your backup into C:\Windows\Installer (recommended) rather than restoring everything unnecessarily.
- To run integrity checks (won’t put back deleted .msp files, but worth doing):
- Open an elevated Command Prompt and run:
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth
- Open an elevated Command Prompt and run:
- To restore one or all .msp files from your backup (example—run in an elevated Command Prompt; replace E: with your backup drive letter):
- Restore specific pattern:
robocopy "E:\InstallerBackup" "C:\Windows\Installer" *.msp /COPYAT /R:2 /W:5 /V /LOG:C:\InstallerRestore.log - Restore entire backup:
robocopy "E:\InstallerBackup" "C:\Windows\Installer" /E /COPYAT /R:2 /W:5 /V /LOG:C:\InstallerRestore.log
- Restore specific pattern:
- Only if multiple programs are failing or you can’t identify missing files. Otherwise restore individual files as needed.
- After 2–4 weeks, you can delete the backup or archive it elsewhere (or keep a system image if you prefer).
- Help run sfc/DISM and interpret results, or
- Walk you through restoring files now (tell me the external drive letter), or
- Show how to use Event Viewer to find a missing .msp name.
datawizard0103
Well-Known Member
- Joined
- Feb 14, 2024
- Messages
- 191
Windows Installer tracks those .msp files in the registry, not just by filename. Since you already deleted them, the smartest cleanup move now is to install and run PatchCleaner and let it reconcile what’s missing versus what Windows still thinks exists. It won’t magically fix what’s gone, but it will stop Windows from endlessly referencing dead installer entries and refilling the folder later.
Also, turn System Restore off, reboot, then turn it back on to flush any stale installer-related restore data. Don’t clear CMOS, don’t reinstall Windows, and don’t touch the Installer folder again manually. If something breaks later, reinstalling the affected app is usually enough. This is very fixable, just needs cleanup not panic.
Also, turn System Restore off, reboot, then turn it back on to flush any stale installer-related restore data. Don’t clear CMOS, don’t reinstall Windows, and don’t touch the Installer folder again manually. If something breaks later, reinstalling the affected app is usually enough. This is very fixable, just needs cleanup not panic.
- Joined
- Mar 14, 2023
- Messages
- 97,282
I see the files — what would you like me to do with them? Pick one (or tell me another):
- Search for keywords/phrases (give exact words or error codes).
- Summarize the contents of all uploaded files.
- Extract specific items (dates, KB numbers, Event IDs, driver names, recovery keys, package identities).
- Look for troubleshooting clues (Event Viewer errors, powercfg output, Device Manager names) and produce a diagnosis + next steps.
- Compare two files and report differences.
Gary Fuhrman
Member
- Joined
- Dec 16, 2025
- Messages
- 9
- Thread Author
-
- #14
Thank you, I ran Patch Cleaner and it moved some orphaned files, but have not found a way to turn System Restore off. One source suggests PC Cleaner can do that but i have not downloaded that. Is it necessary? or worthwhile? or should i just leave well enough alone?Windows Installer tracks those .msp files in the registry, not just by filename. Since you already deleted them, the smartest cleanup move now is to install and run PatchCleaner and let it reconcile what’s missing versus what Windows still thinks exists. It won’t magically fix what’s gone, but it will stop Windows from endlessly referencing dead installer entries and refilling the folder later.
Also, turn System Restore off, reboot, then turn it back on to flush any stale installer-related restore data. Don’t clear CMOS, don’t reinstall Windows, and don’t touch the Installer folder again manually. If something breaks later, reinstalling the affected app is usually enough. This is very fixable, just needs cleanup not panic.
Gary Fuhrman
Member
- Joined
- Dec 16, 2025
- Messages
- 9
- Thread Author
-
- #15
25 days later, no problems using the computer, but i see my C: drive filling up again. Screenshot is of WinDirStat which shows 54 msp files all with the same date, time and size:
each 980.3 MB(!). This can't be normal (or useful). Since my previous deletions have caused no operational problems, i intend to delete that batch again, but would still appreciate any advice on how i can prevent this happening again, or at least suggestions on what is causing it. Thanks in advance!
each 980.3 MB(!). This can't be normal (or useful). Since my previous deletions have caused no operational problems, i intend to delete that batch again, but would still appreciate any advice on how i can prevent this happening again, or at least suggestions on what is causing it. Thanks in advance!
- Joined
- Mar 14, 2023
- Messages
- 97,282
Those 54 identical .msp files (same timestamp and ~980 MB each) in C:\Windows\Installer are not “normal” in the sense of being a healthy steady-state cache. They very strongly suggest one specific MSI-based product/update (often Office/Adobe/SQL/Visual Studio or another large suite) ran an update on December 8, 2025 ~06:39 and cached (or re-cached) a large patch repeatedly.
That said: don’t keep deleting them blindly. You got lucky so far because you haven’t needed to repair/uninstall the affected product yet—but the day you do, Windows Installer may demand one of those cached patches and fail.
Paste the output here (or even just the lines for DisplayName, Manufacturer, Description, MoreInfoURL) and we’ll know exactly what’s creating them.
If you paste either:
That said: don’t keep deleting them blindly. You got lucky so far because you haven’t needed to repair/uninstall the affected product yet—but the day you do, Windows Installer may demand one of those cached patches and fail.
What’s most likely causing this
- A large MSI patch is being applied (or retried) and Windows Installer caches it under randomized names in
C:\Windows\Installer. - If you see many same-size patches created at the exact same moment, it’s commonly:
- a patch bundle that contains many sub-patches, or
- an update/repair loop that re-caches content.
Best way to stop it: identify the product generating the patches
Do this first before deleting anything again.A) Check Event Viewer around the timestamp (fast, often decisive)
- Open Event Viewer → Windows Logs → Application
- On the right, click Filter Current Log…
- In Event sources, select MsiInstaller
- Set a time range around Dec 8, 2025 06:39
- Open the events and look for the Product Name (it often says which application is being installed/updated).
B) Read the patch metadata from one of the .msp files (more technical, very accurate)
Pick one of the new 980.3 MB files (example:C:\Windows\Installer\1065be50.msp) and run this PowerShell (Run as Administrator) to extract patch metadata:
Code:
$msp="C:\Windows\Installer\1065be50.msp"
$installer = New-Object -ComObject WindowsInstaller.Installer
$db = $installer.OpenDatabase($msp, 0)
$view = $db.OpenView("SELECT `Property`,`Value` FROM `MsiPatchMetadata`")
$view.Execute
$rows = @
while ($rec = $view.Fetch { $rows += [pscustomobject]@{ Property = $rec.StringData(1); Value = $rec.StringData(2) }
}
$rows | Sort-Object Property | Format-Table -AutoSize
Safer cleanup going forward (so you can reclaim space without breaking Windows Installer)
Instead of deleting:- Use PatchCleaner (free) to identify orphaned
.msp/.msiinC:\Windows\Installer. - Use its Move option (to an external drive) and run your system for a couple weeks.
- If nothing breaks, delete the moved files on the external drive.
If you insist on deleting that batch anyway
At minimum:- Copy those 54 files to an external “quarantine” folder first (same filenames).
- Then delete them from
C:\Windows\Installer.
If later an uninstall/repair/update fails and demands one of them, you can copy it back.
One key question
Do you have Microsoft Office installed (and which version—Microsoft 365 / Office 2016/2019/2021, etc., or any big suites like Adobe Acrobat, Visual Studio, SQL Server, etc.? Those are common sources of very large MSP caches.If you paste either:
- the MsiInstaller event details around 2025-12-08 06:39, or
- the PowerShell metadata output from one MSP,
Gary Fuhrman
Member
- Joined
- Dec 16, 2025
- Messages
- 9
- Thread Author
-
- #17
OK, now we're getting somewhere! The duplicate msp files apparently result from a failed Adobe Acrobat update or installation. I have Adobe Acrobat Pro by subscription. Event log shows "Product: Adobe Acrobat -- Error 1321.The Installer has insufficient privileges to modify the file C:\Program Files (x86)\Common Files\Adobe\Acrobat\WCIEActiveX\DC\AcroIEFavClient.dll." So what's the fix? I could presumably uninstall it and download Acrobat again but haven't done anything yet.
- Joined
- Mar 14, 2023
- Messages
- 97,282
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
Goal: fix the Acrobat update/installation failure so it stops generating new MSP files.
Right‑click DC → Properties → Security → Advanced.
You should normally see permissions that include at least:
If you don’t see SYSTEM/Administrators with sufficient rights, run:
(If it says “Access is denied”, tell me—then we’ll take ownership of just that file and retry.
2) Do you have any third‑party antivirus (Norton/McAfee/Bitdefender, etc.?
Also, please paste the output of this (Admin Command Prompt):
That will tell us immediately whether it’s a permissions/ownership issue vs. a file-locking issue.
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
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.
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)
5) After it’s fixed: deal with the new MSP pile safely
Once Acrobat updates successfully and stops retrying, you can reclaim space fromC:\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.
- Joined
- Mar 14, 2023
- Messages
- 97,282
If the problem is Adobe‑specific (crashes, freezes, high CPU/RAM, constant update/Creative Cloud issues), “stop using Adobe” can be a valid fix — but I’d phrase it as “switch to alternatives” and give a clean migration path.
Practical “leave Adobe” plan (Windows)
1) Identify what you’re replacing- Photoshop → photo editing
- Lightroom → photo catalog + RAW
- Illustrator → vector
- Premiere/After Effects → video/motion
- Acrobat → PDF edit/sign
- Photoshop: Affinity Photo, GIMP, Krita (painting)
- Lightroom: darktable, RawTherapee, Capture One (paid), ACDSee
- Illustrator: Affinity Designer, Inkscape
- Premiere/After Effects: DaVinci Resolve, Shotcut/Kdenlive, Blender (motion/VFX)
- Acrobat: PDF-XChange Editor, Foxit, SumatraPDF (viewer), Edge built‑in PDF for basics
- Uninstall via Settings → Apps → Installed apps
- Then remove Creative Cloud leftovers (Adobe has a “Creative Cloud Cleaner Tool” if the uninstall leaves broken components)
- PSD/AI compatibility: Most alternatives open them, but advanced effects/plugins may not translate perfectly.
- Fonts: export/install fonts separately (and keep your font licenses in mind).
- Color management: re-check ICC profiles, especially for print work.
- Plugins/presets: many are Adobe‑only; expect replacements.
Similar threads
- Article
- Replies
- 0
- Views
- 79
- Replies
- 0
- Views
- 906
- Replies
- 0
- Views
- 3K
- Article
- Replies
- 0
- Views
- 414
- Solved
- Replies
- 1
- Views
- 3K