reg query "HKLM\SOFTWARE\Microsoft\VisualStudio\9.0\VC\Runtimes\x86" /v Bld
When developers build software using Visual Studio 2008, their code often relies on shared code libraries called . Rather than bundling every single library file with their program, which would increase file size and complexity, they rely on users having the corresponding redistributable package installed.
cmd /c "echo %windir%\System32\msvcr90.dll"
:: 32-bit silent install vcredist_x86.exe /q /norestart
reg query "HKLM\SOFTWARE\Microsoft\VisualStudio\9.0\VC\Runtimes\x86" /v Bld
When developers build software using Visual Studio 2008, their code often relies on shared code libraries called . Rather than bundling every single library file with their program, which would increase file size and complexity, they rely on users having the corresponding redistributable package installed.
cmd /c "echo %windir%\System32\msvcr90.dll"
:: 32-bit silent install vcredist_x86.exe /q /norestart