Build VC++ 2008 redistributables
masterFollow these steps to extract, modify, and perform an administrative installation for VC++ 2008:
- Extract the original executables.
- Modify the
vc_red.msifiles using the provided VBScript. - Admin install to create a clean installation directory.
start /w vcredist_x64.exe /quiet /extract:"%cd%\vc64"
start /w vcredist_x86.exe /quiet /extract:"%cd%\vc86"
cscript vc09.vbs vc64\vc_red.msi
cscript vc09.vbs vc86\vc_red.msi
start /w msiexec.exe /a vc64\vc_red.msi /quiet TARGETDIR="%cd%\2008\x64"
start /w msiexec.exe /a vc86\vc_red.msi /quiet TARGETDIR="%cd%\2008\x86"
rmdir /s /q vc64\ vc86\