0

I am developing a Windows C++ utility using MFC Framework in Visual Studio 6.0(Need to have this combination because of some internal requirements).

My utility installs some softwares, and then configure them from registry. Hence I need to bundle the dependent installer files along with my executable. How can I bundle them all together, so that we can provide an executable to our users which will include all required installer files along with the utility.

PS: I am new to Visual Studio Development environment.

Apoorv Gupta
  • 399
  • 1
  • 4
  • 16

1 Answers1

1

If you just want to create an installer use something like InnoSetup to create a single EXE that can deploy multiple files.

snowdude
  • 3,854
  • 1
  • 18
  • 27