VERIFIED FILE GUIDE

VCRUNTIME140_1.dll — Microsoft Visual C++ Runtime

Everything you need to know about VCRUNTIME140_1.dll: what it does, which programs need it, how to tell a genuine copy from a fake one, and how to fix the errors that mention it.

Windows 10 / 11x64 and x86Updated July 2026~50 KB✓ Manually reviewed
VCRUNTIME140_1.dll Visual C++ 2015–2022 Redistributable (x64 add-on) · x64 and x86 · Last verified July 2026

On this page

  1. What is it
  2. Who needs it
  3. Common errors
  4. Safe download
  5. 32-bit vs 64-bit
  6. Verify your copy
  7. Step-by-step fix
  8. Quick reference
  9. Advanced troubleshooting
  10. Error message breakdown
  11. Version history
  12. Manual registration risks
  13. IT / deployment notes
  14. Why files are shared
  15. Preventing recurrence
  16. Related files
  17. FAQ

What is VCRUNTIME140_1.dll?

VCRUNTIME140_1.dll is a companion file introduced in later Visual Studio 2015+ toolchain updates: it carries the 64-bit exception-unwinding logic that was split out of VCRUNTIME140.dll to fix a stability issue, so 64-bit apps built after that update need both files present together. It belongs to the Visual C++ 2015–2022 Redistributable (x64 add-on) package, and on a healthy Windows 10 / 11 installation it normally sits inside the System32 (or SysWOW64 for the 32-bit build) folder rather than living next to any single program's .exe file.

You typically only notice VCRUNTIME140_1.dll exists when it is missing, outdated, or blocked — an application that depends on it will either refuse to launch, crash a few seconds after opening, or show visibly broken graphics, audio or input. Because the file is shared across many programs, an error involving it is rarely caused by the program you just tried to open; it is almost always a runtime component problem that affects every application depending on the same library.

Who actually needs this file

VCRUNTIME140_1.dll is used by 64-bit applications that rely on C++ exception handling introduced after Visual Studio 2017 update 3 — commonly modern game engines and CAD/3D tools. If none of your installed software falls into that category, you generally don't need to download it manually — Windows or the application's own installer will bring it in automatically when required.

Rule of thumb: if only one specific application throws the error, reinstall or repair that application first. Manually placing a loose DLL rarely fixes the underlying cause and can make future updates harder to apply cleanly.

Common errors that mention VCRUNTIME140_1.dll

These are the exact error strings people most often search for when this file is involved:

All of the messages above point to the same root cause: the operating system tried to load VCRUNTIME140_1.dll into a running process and either couldn't find it, found a version that doesn't match what the program expects, or found a copy that failed a signature or architecture check.

How to get VCRUNTIME140_1.dll safely

Do not download loose .dll files from generic "DLL download" sites. Standalone DLL files distributed outside their original package are a common malware vector, are frequently outdated, and are the single biggest cause of DLL-related instability — worse than the missing-file error they claim to fix. The safe path is almost always to reinstall the official package that legitimately owns the file:

  1. Identify which package the file belongs to — for VCRUNTIME140_1.dll that's the Visual C++ 2015–2022 Redistributable (x64 add-on).
  2. Download the official redistributable directly from Microsoft's own distribution page, not a third-party mirror.
  3. Close every application that might be using the file before installing, including background updaters.
  4. Run the installer as Administrator and let it complete fully, even if it reports "already installed" — repair installs still refresh corrupted files.
  5. Restart Windows before testing the application that originally showed the error.
If a specific application bundled this file: reinstalling that application (not just the runtime package) is usually faster and safer, since its installer will restore every dependency it needs in the correct versions.

32-bit vs 64-bit: which build do you need?

VCRUNTIME140_1.dll ships in x64 and x86 builds. A 64-bit application needs the 64-bit copy of the file, and a 32-bit application needs the 32-bit copy — installing only one does not automatically cover the other, which is why some systems need both versions present at once. Windows itself keeps these in separate folders (64-bit files in System32, 32-bit files in SysWOW64 on a 64-bit OS) precisely so both can coexist without conflicting.

If you're not sure which build an application needs, check its installation folder: a genuine 64-bit executable will typically sit in Program Files, while a 32-bit one is usually under Program Files (x86). Task Manager's "Details" tab also labels 32-bit processes with *32 next to the process name.

Verifying the file you already have

Before reinstalling anything, it's worth checking whether VCRUNTIME140_1.dll is already present and simply mismatched or damaged:

  1. Press Win + R, type System32, press Enter, then search for VCRUNTIME140_1.dll in that folder (and SysWOW64 for the 32-bit build).
  2. Right-click the file → Properties → Digital Signatures tab. A legitimate Microsoft-owned file will show "Microsoft Windows" or "Microsoft Corporation" as the signer.
  3. Check the Details tab for a File Version number and compare it against the version documented on this page.
  4. If Properties shows no Digital Signatures tab at all, treat the file as suspicious — genuine system and redistributable DLLs from Microsoft are signed.
No signature, unexpected file size, or the file sitting inside a random Downloads-folder subfolder instead of System32? Delete it and get a clean copy through the official redistributable installer instead of trusting it.

Step-by-step fix

  1. Run Windows Update and install any pending updates — Microsoft periodically patches runtime components through cumulative updates.
  2. Open Settings → Apps → Installed apps and check whether Visual C++ 2015–2022 Redistributable (x64 add-on) is already listed. If it is, select it and choose Repair rather than uninstalling first.
  3. If it isn't listed, download the official redistributable and run a fresh install.
  4. Run sfc /scannow from an elevated Command Prompt to let Windows repair any corrupted system files on its own.
  5. Reinstall the specific application that triggered the error, so its own installer can restore any dependency it privately expects.
  6. Restart the computer — many runtime installers register components at the system level and need a reboot to take effect fully.

Quick reference

PropertyValue
File nameVCRUNTIME140_1.dll
Package / familyVisual C++ 2015–2022 Redistributable (x64 add-on)
Supported OSWindows 10 / 11
Architecturex64 and x86
Approx. file size~50 KB
Last verifiedJuly 2026
Distributed byMicrosoft Corporation

If the error still won't go away

A small number of cases don't resolve with a straightforward reinstall. If you've followed every step above and the error persists, work through these less common causes in order:

Breaking down each error message

"VCRUNTIME140_1.dll was not found"

This usually means Windows searched every folder on its DLL load path and found no matching file at all — either it was never installed, or it was recently deleted by a cleanup tool, a failed update, or overzealous antivirus quarantine. Fix: follow the step-by-step section below — in most cases a repair install of Visual C++ 2015–2022 Redistributable (x64 add-on) resolves this specific message.

"This application failed to start because VCRUNTIME140_1.dll is missing"

This points to the file being present somewhere on disk but not in a location Windows checks automatically (for example a game folder instead of System32), or being the wrong architecture (32-bit copy for a 64-bit process, or vice versa). Fix: follow the step-by-step section below — in most cases a repair install of Visual C++ 2015–2022 Redistributable (x64 add-on) resolves this specific message.

"Error appears only after installing VCRUNTIME140.dll but not the companion file"

This typically means a copy of the file exists and loads, but is missing a specific function the calling program expects — almost always because the installed version is older than what the software was built against. Fix: follow the step-by-step section below — in most cases a repair install of Visual C++ 2015–2022 Redistributable (x64 add-on) resolves this specific message.

Version history and why versions matter

Microsoft periodically updates Visual C++ 2015–2022 Redistributable (x64 add-on) to patch security issues, fix crash bugs, and add compatibility for newer compiler features. Because VCRUNTIME140_1.dll is a shared, backward-compatible component, a newer copy will almost always run software written for an older version — but the reverse is not guaranteed, which is why "downgrading" by copying an old DLL over a new one is a common (and usually bad) troubleshooting shortcut.

Release windowWhat typically changed
July 2026Latest servicing update — current recommended version for Windows 10 / 11.
Prior servicing updateSecurity and stability patches rolled into a routine Windows Update / redistributable refresh.
Original releaseFirst version shipped with the Visual C++ 2015–2022 Redistributable (x64 add-on) package.

If you need to confirm exactly which build is installed, right-click the file in Explorer, open Properties → Details, and compare the File version and Product version fields against what's documented on this page. A version far older than the "Last verified" date above is a sign the redistributable package hasn't been updated in a long time and is worth refreshing even if nothing is currently broken.

Should you manually register or copy this file?

Guides that tell you to manually drop VCRUNTIME140_1.dll into System32 and run regsvr32 against it are treating the symptom, not the cause. Manual placement:

The official installer path takes only slightly longer and avoids every one of these problems, which is why it's the recommended method throughout this guide.

Notes for IT admins and multi-PC deployment

On managed fleets, push Visual C++ 2015–2022 Redistributable (x64 add-on) through your standard deployment tooling (Intune, SCCM, Group Policy software installation, or a silent-install script using the official installer's /quiet switch) rather than touching individual files. This keeps the component visible to inventory and patch-compliance tooling, so a future CVE affecting the runtime shows up in your normal patch reporting instead of hiding as an untracked loose file on some machines.

Why Windows splits functionality across files like this

It can seem strange that a single missing file can stop dozens of unrelated programs from launching. The reason is deliberate: rather than compiling the same runtime code into every executable, Microsoft's toolchain lets programs share one copy on disk. This keeps individual applications smaller, lets Microsoft patch a security issue once for every program that depends on it, and avoids running dozens of slightly different, unpatched copies of the same logic in memory at once. The tradeoff is that when the shared file itself goes missing or gets corrupted, the failure is felt across many programs simultaneously rather than just one — which is exactly the pattern behind the error messages covered on this page.

Preventing this error from coming back

Frequently asked questions

Is it safe to download VCRUNTIME140_1.dll separately?

Downloading a loose copy of VCRUNTIME140_1.dll from a generic file-hosting site is not recommended. The safer route is installing the official Visual C++ 2015–2022 Redistributable (x64 add-on), which places every file in the correct location with the correct permissions and keeps it updateable through Windows Update.

Where should VCRUNTIME140_1.dll be located on my PC?

On a normal installation it lives in C:\Windows\System32 for the 64-bit build, or C:\Windows\SysWOW64 for the 32-bit build on a 64-bit copy of Windows. It should not need to be copied into individual game or application folders.

Will reinstalling Visual C++ 2015–2022 Redistributable (x64 add-on) remove my other programs?

No. Redistributable runtime packages are shared components — reinstalling or repairing one does not uninstall or reset applications that depend on it; it simply refreshes the runtime files those applications call.

Why does the error come back after I fix it once?

A recurring error after a successful fix usually means something is actively removing or blocking the file — commonly an overzealous antivirus scan, a disk cleanup tool, or a third-party 'optimizer' utility. Check your security software's quarantine log first.

Do I need both the x64 and x86 versions of VCRUNTIME140_1.dll?

Only if you run both 32-bit and 64-bit applications that depend on it. Installing the matching official redistributable package normally installs both builds side by side automatically, so most users never have to choose manually.

Can an outdated VCRUNTIME140_1.dll cause crashes instead of a missing-file error?

Yes. Version mismatches often surface as random crashes, graphical glitches, or silent failures rather than a clear 'file not found' message, because the program loads an older copy successfully but calls a function that copy doesn't implement.

WinFileHub Editorial Team
Every file entry is checked for version accuracy, source authenticity and signature validity before publishing. Last review date is shown in the page metadata above.