This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Re: How to add Visual C++ 2010 Redistributable to my project
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 24, 2015
05:54 PM
How to add Visual C++ 2010 Redistributable to my project
My project requires that Microsoft Visual C++ 2010 Redistributables be installed...how can I add these libraries or installation steps to my current project?
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 25, 2015
01:26 PM
If you have a basic MSI package switch to the redistributable view.
Find your VS2010 redistributable here and place a checkmark before it. To the right if the Location value indicates that it needs to be downloaded then right click on the redistributable and download the file.
In the releases mode make sure you compile your setup using the setup.exe wrapper and not as a plain MSI. Setups that utilize the prerequsites require the EXE wrapper.
Find your VS2010 redistributable here and place a checkmark before it. To the right if the Location value indicates that it needs to be downloaded then right click on the redistributable and download the file.
In the releases mode make sure you compile your setup using the setup.exe wrapper and not as a plain MSI. Setups that utilize the prerequsites require the EXE wrapper.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 28, 2015
04:45 PM
I do not have access to InstallShield, is there any way to accomplish this in InstallAnywhere 2015?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 29, 2015
02:41 AM
In install phase, put the vcredist_x64.exe or vcredist_x86.exe then execute it in silent mode (execute script action)
e.g. "$USER_INSTALL_DIR$$/$...$/$vcredist_x86.exe" /q
This should install it on the destination computer if not already installed ...
--Jerome
e.g. "$USER_INSTALL_DIR$$/$...$/$vcredist_x86.exe" /q
This should install it on the destination computer if not already installed ...
--Jerome
