I have an .msi installer developed using wix that installs some dlls in a directory on the file system. Some of these dlls have dependency on Visual C++ Redistributable Packages for Visual Studio 2013. I am wondering that is it possible to install that run time (downloaded from https://www.microsoft.com/en-us/download/details.aspx?id=40784) during my installer's installation process? - that is while the .msi installer is running and copying dlls, it will install the MSVC run time at the same time for the user.
I want to know if this is possible.. If it is, is this generally a good or bad practice? Should it be enough to just copy the MSVCP120.dll and MSVCR120.dll along with all other dlls? Thanks.