7

I have an application developed using c++\cli on vs2008. As you are aware to deploy this application on any machine, i need the vc++ redistributable to be installed on the target machine.

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

Yan Sklyarenko
  • 31,557
  • 24
  • 104
  • 139
rumDeep
  • 71
  • 1
  • 2
  • I seem to recall that InstallShield list this redist among its predefined prerequisites. If it's true, then it's as simple as checking the appropriate checkbox – Yan Sklyarenko Aug 25 '11 at 13:45

1 Answers1

6

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

This MSDN page describes exactly what you want to do.

Stephan
  • 4,187
  • 1
  • 21
  • 33