install VC++ Debug Runtime Distributable

21,912

Solution 1

For testing purposes, you can include the Debug DLLs you need 'side-by-side' with your application. You can find them on a machine with VS 2013 installed:

C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\redist\Debug_NonRedist

When you deploy your app, you must use Release mode distributions. For Win32 desktop apps, use these instructions. For Windows Store apps, you don't have to deploy the CRT as it's handled by the Windows Store.

Solution 2

OP was asking about 2013, but the title is general, so..

I just wanted to point out that in newer Visual Studio releases with the "select what you want" installer, for the debug runtime you need just "tools" or "build tools" (e.g. VC++ 2017 version 15.9 v14.16 latest v141 tools or MSVC v142 - VS 2019 C++ Build Tools, not to be confused with the toolset)

As for where you can find the libs, VS 2015 still has them basically in the same path outlined in Chuck's answer. From 2017, you should have something like:

<root>\Microsoft Visual Studio\2017\Community\VC\Redist\MSVC\14.16.27012\debug_nonredist
Share:
21,912
Wala Ramouni
Author by

Wala Ramouni

──▄▀▀▀▄▄▄▄▄▄▄▀▀▀▄─── ───█▒▒░░░░░░░░░▒▒█─── ────█░░█░░░░░█░░█──── ─▄▄──█░░░▀█▀░░░█──▄▄─ █░░█─▀▄░░░░░░░▄▀─█░░█ █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█ █░░╦─╦╔╗╦─╔╗╔╗╔╦╗╔╗░░█ █░░║║║╠─║─║─║║║║║╠─░░█ █░░╚╩╝╚╝╚╝╚╝╚╝╩─╩╚╝░░█ █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ ღϡ₡ღღϡ₡ღ ღϡ₡ღღϡ₡ღ ღϡ₡ღღϡ₡ღ About Me : ♏⑂ ηαღ℮ їṧ Шαʟ@ ℝ@ღ◎ᾔ☤ ℐ ℒ◎♥ℯ ℙя◎ℊґαμღ☤ᾔ❡  ℑм ṧø ḉł@☤м αηḓ ℘α⊥ḯℯη☂ Ї ℌαṽ℮ α ℊґℯ@т ḟαღ☤ℓ⑂ αᾔ∂ @ ❡ℯ@☂ ẘøґʟ∂ ℐ łїк℮ ґεαⅾḯᾔ❡ ẘґї☂їᾔℊ αη∂ ḓяαωḯᾔℊ __ ..;'.-._ __{-.-..-.'_,} _______{;...{,۞..'.-'} _______{..'-...;...'; __'-.-.......-.'..;'.-. _._.;'..-._|{-.-..-.'_.,} _{--..-.'.',}|{;..{,۞....-'} {;...{,۞....-'}|_{..'-.._;..-'; _{..'-.''.;..-'/''_'--.._....-' _'-.-....-'/'''-;''_/╱ ___/.',-;-'_/,-""-. ,-""-_╰._ ,╯//...-'.) /....-'.)_|/\,,/ _\,---'_|_// _____|/ _\¯¯¯¯¯¯¯/ _ )¯¯¯¯¯¯( _/.◊.◊.◊.\ _/.............\ _............./ _'___/ ∫▒∫•♥•’ LØLØ •♥•∫▒∫  __      __    ._       _    /  \    /  /  _  \ |    |     /  _  \   \   //   /  /\  \|    |    /  /\  \   \        /    |    \    |/    |    \   _/\  /__|__  /_ __|  /        /         /        /       / . 【ツ】 【ツ】 ساعيش حياتي كما يريدها الله لي لن اكره احدا فالموت ليس ببعيد لن احدث المشاكل ولن اسبب الالام لاحد وساظل مبتسمة رغم الالم فابتسامتي تعني الكثير لامي صحيح انني انطوائية هادئة لكن في داخلي الكثير اتمنى لو اصرخ واصرخ اتمنى لو انني اصبح شخصا اقوى واقوى اتمنى لو اتخلص من عقدة الخجل والهدوء اتمنى لو ان صوتي اعلى واعلى . . عندما أموت ... ... ... ... سيمــوت معي ..!! حبي...حلمي ... ضحكتي ... بكآئي ... طلتي... كل شيء!!!! وســأبقي ذكرى عابرة فقط !! سيبكي من يحبني ... سيضحك من يكرهني ....سينصدمون أهلي ... ولكن ,, تـــأكدو,, كنت أحبكــم جميعـا

Updated on July 17, 2022

Comments

  • Wala Ramouni
    Wala Ramouni almost 2 years

    Is there anyway to install or have VC++ Debug Runtime Distributable without installing Visual Studio ? Just to run a dll that has been compiled in debug mode using VS2013 on another machine that hasn't VS2013.