Где находится microsoft visual c на windows 10
Перейти к содержимому

Где находится microsoft visual c на windows 10

  • автор:

У вас большие запросы!

Точнее, от вашего браузера их поступает слишком много, и сервер VK забил тревогу.

Эта страница была загружена по HTTP, вместо безопасного HTTPS, а значит телепортации обратно не будет.
Обратитесь в поддержку сервиса.

Вы отключили сохранение Cookies, а они нужны, чтобы решить проблему.

Почему-то страница не получила всех данных, а без них она не работает.
Обратитесь в поддержку сервиса.

Вы вернётесь на предыдущую страницу через 5 секунд.
Вернуться назад

У вас большие запросы!

Точнее, от вашего браузера их поступает слишком много, и сервер VK забил тревогу.

Эта страница была загружена по HTTP, вместо безопасного HTTPS, а значит телепортации обратно не будет.
Обратитесь в поддержку сервиса.

Вы отключили сохранение Cookies, а они нужны, чтобы решить проблему.

Почему-то страница не получила всех данных, а без них она не работает.
Обратитесь в поддержку сервиса.

Вы вернётесь на предыдущую страницу через 5 секунд.
Вернуться назад

У вас большие запросы!

Точнее, от вашего браузера их поступает слишком много, и сервер VK забил тревогу.

Эта страница была загружена по HTTP, вместо безопасного HTTPS, а значит телепортации обратно не будет.
Обратитесь в поддержку сервиса.

Вы отключили сохранение Cookies, а они нужны, чтобы решить проблему.

Почему-то страница не получила всех данных, а без них она не работает.
Обратитесь в поддержку сервиса.

Вы вернётесь на предыдущую страницу через 5 секунд.
Вернуться назад

Where are the Microsoft Visual C++ 2015-2022 Redistributable (x64) packages installed?

I know visual C++ 2015-2022 is installed because: A. I see it in Apps & Features (Microsoft Visual C++ 2015-2022 Redistributable (x64) — 14.31.31103 B. I see it in registry HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\VisualStudio\14.0\VC\Runtimes\X64 but %VCINSTALLDIR% is not set on my path, and I cant find the dll’s anywhere. I need to be really specific with my IT dept to get this fixed. I want to add the dll to the system path but I have to find them first! I managed to find VC_redist.x64.exe in C:\ProgramData\Package Cache\ <2aaf1df0-eb13-4099-9992-962bb4e596d1>but I think that is pretty strange. it may be unrelated to the install. Any help appreciated!

asked Mar 25, 2022 at 12:10
1,094 1 1 gold badge 12 12 silver badges 26 26 bronze badges

It will be set in a Visual Studio Command prompt. I have my windows terminal with links to the VS Command prompt for each completely separate build tree I work on.

Mar 25, 2022 at 12:23

3 Answers 3

For me they are at

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Redist\MSVC 

Do note that %VCINSTALLDIR% only works in the Visual Studio Developer Command Prompt. That should be located under the Visual Studio XXXX folder in your start menu or it can be launched directly from inside visual studio. You can then enter

cd %VCINSTALLDIR% 

in the terminal to get where the directory is located on your machine.

answered Mar 25, 2022 at 12:22
NathanOliver NathanOliver
174k 28 28 gold badges 294 294 silver badges 408 408 bronze badges

@Frank Are you saying you have MSVS installed on your machine, but there is no folder for it under the program files folders? If so, cd %VCINSTALLDIR% from the developer terminal will tell you where MSVS is installed at.

Mar 25, 2022 at 12:40

@Frank Ah, okay. Looks like you found it then in C:\ProgramData\Package Cache\ <2aaf1df0-eb13-4099-9992-962bb4e596d1>. My folder only contains 4 executables: vc_redist.x64.exe, vc_redist.x86.exe, vcredist.x64.exe, vcredist.x86.exe. The actual DLLs are most likely going to be in WinSxS folder.

Mar 25, 2022 at 12:44

@Frank I believe it is msvcrt.dll that you are looking for and that should be in C:\Windows\SysWOW64 or in one of the WinSxS subfolders

Mar 25, 2022 at 12:47

@Frank the redistributables only install the DLLs that are required to run applications compiled with visual studio, they don’t install any part of visual studio itself. The DLLs are installed in the windows system directories so you wont see anything in program files. If you want to build things you need to install the VS build tools instead

Mar 25, 2022 at 12:50

@Frank It’s not that weird. While it is listed under add and remove programs, it really isn’t a program. It’s a collection of DLL’s that other programs interact with.

Mar 25, 2022 at 12:50

According to Github/Microsoft Visual C++ Files are in %VCINSTALLDIR%Redist\MSVC\v143 folder.

The easiest way to locate the redistributable files is by using environment variables set in a developer command prompt. In Visual Studio 2022, the redistributable files are in the %VCINSTALLDIR%Redist\MSVC\v143 folder. In the latest version of Visual Studio 2019, you’ll find the redistributable files in the %VCINSTALLDIR%Redist\MSVC\v142 folder. In both Visual Studio 2017 and Visual Studio 2019, they’re also found in %VCToolsRedistDir%. In Visual Studio 2015, these files can be found in %VCINSTALLDIR%redist, where is the locale of the redistributable packages.

answered Mar 25, 2022 at 12:22
328 2 2 silver badges 14 14 bronze badges

I know visual C++ 2015-2022 is installed because:

A. I see it in Apps & Features (Microsoft Visual C++ 2015-2022 Redistributable (x64) — 14.31.31103 .

You’re confusing Visual Studio (the development environment) with Microsoft Visual C++ Redistributable (a runtime support library). There isn’t even such a thing as «visual C++ 2015-2022». Each version of Visual Studio has one specific year, such as Visual Studio 2017 (VS2017). The redistributable works for all Visual Studio versions between VS2015 and VS2022.

%VCINSTALLDIR% is set by the command prompts of all Visual Studio version, but the value will differ between Visual Studio variants. You can install multiple versions of Visual Studio side by side on the same computer.

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *