Windows Updates Keep Breaking the Visual C++ Redistributable

0
5
Asked By MellowCedar47 On

Is anyone else seeing recurring problems on managed Windows endpoints where a Windows update causes the Visual C++ 2015–2022 x64 Redistributable to stop working or revert to an older runtime? Afterward, applications such as Power PDF, Adobe products, or other software fail to launch until the redistributable is repaired or reinstalled. The issue keeps returning after updates, so I'm trying to identify the underlying cause rather than repeatedly applying the repair.

4 Answers

Answered By AmberKite73 On

A temporary application-specific DLL workaround may be possible because Windows commonly searches the executable directory first, but it can create maintenance and security problems. It is safer to correct the outdated dependency or driver that is replacing the system runtime.

Answered By BriskWalnut19 On

Be careful about assuming every release upgrade is a full Windows reinstall. Some version changes are only enablement packages, so the better approach is to verify what actually changed, inspect installer logs, and determine whether the redistributable was removed, repaired, or had its DLLs overwritten.

Answered By NimbleQuartz31 On

Power PDF and Adobe InDesign can both fail when the runtime files are downgraded. On an affected machine, compare the file version of MSVCP140.dll before and after repairing the redistributable. Searching locations such as the DriverStore, Program Files, and ProgramData can help identify which driver or installer supplied the older copy.

Answered By OrbitingPanda8 On

In our environment, the real culprit turned out to be an outdated EFI Fiery printer driver. It bundled older versions of the Visual C++ runtime, and Windows update activity caused printer drivers to be reapplied. That replaced newer DLLs with older ones and broke applications including LibreOffice and Adobe Creative Cloud. Updating the printer queues to a newer driver and removing the obsolete packages from the workstation DriverStore stopped the problem.

CopperLynx22 -

We saw the same thing with EFI drivers, and Autodesk and Adobe applications were affected most often.

QuietHarbor6 -

Apparently some EFI packages include an old VC runtime, and feature updates can trigger printer-driver reinstallations. Repairing the redistributable only treats the symptom until the outdated driver is removed.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.