Can I include "vcredist_x86.exe" in my setup

I have an application developed using C ++ \ cli on vs2008. Since you know to deploy this application on any computer, I need vC ++ to be distributed for installation on the target machine.

I wanted to know if I can include vcredist_x86.exe in my installation (created using InstallShield) and install it as a pre-build event?

+6
source share
1 answer

If you want to know if this is allowed: Yes. That is why it is called redistributable.

This MSDN page describes exactly what you want to do.

+5
source

Source: https://habr.com/ru/post/895859/


All Articles