Best way to deploy Visual C++ 2010 & 2012
I have to deploy Microsoft visual C++ 2010 & 2012 Redistribute packages as part of a prerequisite for another program I have. My problem is that both C++ programs are .exe and not .msi installers. Are there msi packages available or what is the best practice to deploy these two exe files?
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
dedenker
10 years ago
Just make the package with command line:
vcredist.exe /q /norestart
And for 2012, here I found a how to:
http://www.applepie.se/extract-msi-from-visual-c-2012-redistributable
vcredist.exe /q /norestart
And for 2012, here I found a how to:
http://www.applepie.se/extract-msi-from-visual-c-2012-redistributable
Comments:
-
Thanks, appreciate your assistance. - usa.plaietta 10 years ago
Posted by:
Badger
10 years ago
Posted by:
EdT
10 years ago
As is pretty general with all EXE installers from Microsoft, running the exe from the command line with /? as the argument will give you a dialogue box displaying the available switches to use with the EXE.
Comments:
-
Thanks, appreciate your assistance. - usa.plaietta 10 years ago