简体   繁体   中英

Add Visual C++ Redistributable for Visual Studio 2015 to InstallShield

Issue


I have just set up my InstallSheild which works fine and i am just wondering how i can add the (x86) + (x64) version of this download : https://www.microsoft.com/en-gb/download/details.aspx?id=48145 to my InstallShield so the user has to install it.

I have tried to get this working on One-Click but this also does not work.

Has anyone tried adding this package to there InstallShield?

If its simple MSI project then you go into Application data/Redistributables search for desired package to add, probably needs to be downloaded first. When you check it it should be included and installed before feature selection, you can change this option in this view. (i dont have personal experience with this)

But i have suite project which includes c++ redist 2015. You can add it in Packages view, right click it and add new executable. You can map it from the installshield folder (where it was downloaded from the step i wrote above) or from the place you have downloaded it before.

You just need to add a prerequisite for Visual C++ Redistributable. In that prerequisite, you just need to mention a path of exe (files to include). You can set this path to the download location where you have already downloaded that exe. So it will get added to your installer. And then while installation it'll get installed on target system on one click.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM