Click here to Skip to main content
15,885,980 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am using Visual Studio Setup and Deployment. I have built a setup project, I want to run another setup file during installation of my main setup. Please advise how to to it.

Thanks
Posted
Updated 24-Dec-12 1:08am
v2

1 solution

Have a look at these two links:
*Click Once Deployment[^]
*Inno setup[^]
--OR--
You can add a bat file to run these two project simultaneously.
For example:

1.In application folder, add two primary output files: x and y.
2.New a text document, and write:

@echo off

start x.exe

start y.exe

Save it as MyBat.bat file.
3. Add MyBat.bat file to the application folder of setup project.

4.Create a shortcut for Mybat.bat in application folder, rename its name to Start Project. Cut this shortcut and past to User’s Desktop.

After installation, there will be a Start Project in the desktop. Double click this file. It will run x.exe and y.exe.

Good luck,
OI
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900