The Problem
VCRUNTIME140.dll is part of the Microsoft Visual C++ Redistributable — a shared runtime that thousands of programs and games are built against. When an app reports it is missing, the app itself is fine; the runtime it depends on is absent, the wrong architecture, or damaged.
Windows does not ship every version of this runtime by default, so a fresh install, a cleanup tool that removed "unused" components, or an antivirus quarantine are the usual reasons it disappears.
Different DLL name in the error? The same fix applies to
MSVCP140.dll— see fix MSVCP140.dll missing. App opens then closes immediately? See fix an app crashing or not opening.
Symptoms
- Dialog reading "The code execution cannot proceed because VCRUNTIME140.dll was not found."
- "VCRUNTIME140_1.dll is missing from your computer" — a separate file that ships with the same package.
- A game launcher closes silently, or the game exits to desktop with no error at all.
- The error appears for several unrelated programs at once, which confirms it is the shared runtime, not one app.
Step 1: Install the Current Visual C++ Redistributable
Almost every case is fixed here.
- Go to the Microsoft download page for the latest supported Visual C++ Redistributable (search Microsoft's site directly — never download a DLL from a third-party "DLL library" site).
- Download both packages:
vc_redist.x64.exeandvc_redist.x86.exe. - Install the x64 version, then the x86 version. 32-bit apps need the x86 runtime even on 64-bit Windows, and most missing-DLL reports come down to exactly this.
- Reboot, then try the app again.
Step 2: Repair an Existing Installation
If the redistributable is already listed, the files are damaged rather than absent.
- Run
vc_redist.x64.exeagain. When it detects an existing install it offers Repair — choose it. - Do the same for
vc_redist.x86.exe. - Alternatively, open Settings → Apps → Installed apps, find each Microsoft Visual C++ 2015-2022 Redistributable entry, click the ⋯ menu → Modify → Repair.
- Reboot after repairing both.
Step 3: Install the Older Runtimes Too
Older games and utilities are linked against earlier runtimes that the current package does not replace.
- Install the Visual C++ 2013, 2012, and 2010 redistributables from Microsoft, in both x64 and x86 where offered.
- These install side by side — they do not conflict with the 2015-2022 package.
- If a game shipped a
_CommonRedistorRedistfolder (common on Steam and GOG titles), run the installers inside it. Steam: right-click the game → Manage → Browse local files.
Step 4: Check Antivirus Quarantine
Security software occasionally flags a runtime DLL from a game installer as suspicious and removes it.
- Open Windows Security → Virus & threat protection → Protection history.
- Look for a quarantined item with
VCRUNTIME140or the app's folder in its path. - If you recognise the app and trust its source, choose Actions → Restore.
- Check any third-party suite's own quarantine as well.
- If you do not recognise the app, leave it quarantined and scan properly: remove viruses and malware in Windows 11.
Step 5: Verify or Reinstall the App Itself
- Steam: right-click the game → Properties → Installed Files → Verify integrity of game files.
- Epic Games: library → ⋯ → Manage → Verify.
- For a normal program, uninstall from Settings → Apps → Installed apps, reboot, and install it again from the official source.
- Related: avoid malware in fake downloads — a "free" installer from a search ad is a common source of broken app installs.
Step 6: Repair Windows System Files
- Open Terminal (Admin) and run:
sfc /scannowDISM /Online /Cleanup-Image /RestoreHealth - Reboot and run
sfc /scannowonce more to confirm a clean result. - Full walkthrough: how to run SFC and DISM.
Step 7: Install Pending Windows Updates
- Settings → Windows Update → Check for updates.
- Open Advanced options → Optional updates and install anything listed there too.
- Reboot and retest. If updates will not install: fix Windows 11 update errors.
Step 8: Roll Back with a Restore Point
If the error started after a cleanup utility or a driver install, going back is faster than hunting the cause.
- Press Windows + R, type
rstrui.exe, press Enter. - Pick a restore point dated before the problem started and follow the wizard.
- Restore points do not touch your documents, but they do remove programs installed after that date.
- If you have none: create a system restore point so the next problem is a five-minute fix.
What Not to Do
- Never download
VCRUNTIME140.dllfrom a DLL download site. Those files are a well-known malware delivery route, and a mismatched DLL breaks more apps than it fixes. - Don't copy the DLL from another PC into
System32. Version mismatches cause harder-to-diagnose crashes later. - Don't register it with
regsvr32. It is not a COM component; that command will fail and change nothing.
Still Not Working?
If both redistributables are installed and repaired, the app verifies clean, and SFC reports no problems, create a new local user account (Settings → Accounts → Other users → Add account) and try the app there. If it works, your user profile is damaged — move your data to the new profile.
If it fails for every user and every app, do a repair install that keeps your files: reinstall Windows without losing data.
Related: fix application error 0xc0000142 and fix the Microsoft Store not working.
Related guides
Fix Camera Not Working in Teams or Zoom on Windows 11
Camera works in the Windows Camera app but not in Teams or Zoom? Fix app permissions, the device already in use error, virtual camera conflicts, and driver problems.
How to Fix a Discord Mic Not Working in Windows 11
Nobody can hear you on Discord in Windows 11? Fix input device selection, exclusive mode, privacy permissions, and the push-to-talk and voice settings behind a dead mic.
Fix .NET Framework 3.5 Install Error in Windows 11
Windows 11 failing to install .NET Framework 3.5 with error 0x800F0950 or 0x800F081F? Install it from the ISO source, fix the Group Policy block, and repair Windows Update.
How to Fix Outlook Not Opening in Windows 11
Outlook stuck on the loading profile screen, crashing at startup, or refusing to open in Windows 11? Fix it with safe mode, add-in checks, profile repair, and Office repair.
How to Fix Chrome Crashing on Windows 11
Chrome crashing, freezing, or showing "Aw, Snap!" on Windows 11? Fix the extensions, GPU, and profile problems behind it with these step-by-step fixes.