Ben Clarke
Ben Clarke

Reputation: 1061

Include VC++ 2015 runtime (x86) + (x64) in One-Click install application

Issue


I have developed my application in Visual Studio 2015 but when I use the One-Click install and install the application on my clients machine. It needs to have the VC++ 2015 runtime (x86) + (x64) installed.

I have tried looking in the prerequisites but the files do not seem to be in there for me to add.

Is there a way for me to somehow tag on VC++ 2015 runtime (x86) + (x64) to my application so when the client installs it, it will also install the runtime.

Upvotes: 1

Views: 679

Answers (1)

neohope
neohope

Reputation: 1832

There are three ways to do this:

  1. build your app with MT instead of MD
  2. include the vc_redist package in your package, in the after-install section execute the vc_redist package
  3. find a newer packager which support vc2015

vc_redist_2015

Upvotes: 1

Related Questions