Visual C++ 更新 2 运行时在哪里
Where is the Visual C++ Update 2 Runtime
Visual Studio2015 Update 2 已经发布7天了。我在哪里可以下载 Visual C++ Update 2 运行time 以便我可以 运行 使用 Visual C++ 2015 Update 2 编译的应用程序?
这是download
Microsoft Visual C++ 2015 Redistributable installs run-time components
of Visual C++ libraries. These components are required to run C++
applications that are developed using Visual Studio 2015 Update 3 and
link dynamically to Visual C++ libraries. The packages can be used to
run such applications on a computer even if it does not have Visual
Studio 2015 installed. These packages also install run-time components
of C Runtime (CRT), Standard C++, MFC, C++ AMP, and OpenMP libraries.
Microsoft Visual C++ 2015 Redistributable includes bug fixes to the
runtime DLLs and also the latest versions for KB 2999226.
Visual Studio 2015 Update 2 VC++ Redistributable 软件包中有两个文件。
- vc_redist.x64.exe (v14.0.23918.0)。
https://download.microsoft.com/download/0/5/0/0504B211-6090-48B1-8DEE-3FF879C29968/vc_redist.x64.exe
- vc_redist.x86.exe (v14.0.23918.0)。
https://download.microsoft.com/download/0/5/0/0504B211-6090-48B1-8DEE-3FF879C29968/vc_redist.x86.exe
对于那些关心的人,x64 版本设置了以下注册表项:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DevDiv\VC\Servicing.0\RuntimeMinimum\UpdateVersion (REG_SZ)
到值“14.0.23918”。
对于 x86 版本,检查注册表项是否存在:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall{2e085fd2-a3e4-4b39-8e10-6b8d35f55244}
如果存在,则更新已安装。
Visual Studio2015 Update 2 已经发布7天了。我在哪里可以下载 Visual C++ Update 2 运行time 以便我可以 运行 使用 Visual C++ 2015 Update 2 编译的应用程序?
这是download
Microsoft Visual C++ 2015 Redistributable installs run-time components of Visual C++ libraries. These components are required to run C++ applications that are developed using Visual Studio 2015 Update 3 and link dynamically to Visual C++ libraries. The packages can be used to run such applications on a computer even if it does not have Visual Studio 2015 installed. These packages also install run-time components of C Runtime (CRT), Standard C++, MFC, C++ AMP, and OpenMP libraries. Microsoft Visual C++ 2015 Redistributable includes bug fixes to the runtime DLLs and also the latest versions for KB 2999226.
Visual Studio 2015 Update 2 VC++ Redistributable 软件包中有两个文件。
- vc_redist.x64.exe (v14.0.23918.0)。 https://download.microsoft.com/download/0/5/0/0504B211-6090-48B1-8DEE-3FF879C29968/vc_redist.x64.exe
- vc_redist.x86.exe (v14.0.23918.0)。 https://download.microsoft.com/download/0/5/0/0504B211-6090-48B1-8DEE-3FF879C29968/vc_redist.x86.exe
对于那些关心的人,x64 版本设置了以下注册表项:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DevDiv\VC\Servicing.0\RuntimeMinimum\UpdateVersion (REG_SZ)到值“14.0.23918”。
对于 x86 版本,检查注册表项是否存在:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall{2e085fd2-a3e4-4b39-8e10-6b8d35f55244}如果存在,则更新已安装。