views:

25

answers:

2

I am building an installer for my windows app and have done this through a setup/installer project in visual studio.

I was wondering how to customize he UI of the finish dialog box? I want to add a couple of check-boxes and launch an app after the user closes the finish box.

Is there a way to do this in Visual studio itself or does it require any other tools? If other tools are required then are any of them free?

Thanks Kapil

+1  A: 

Inno Setup is free and has the ability to run things when the install is complete.

Alex K.
Thanks guys! Will look into these tools
Kapil
+1  A: 

Visual studio deployment projects give you some standard templated dialog boxes.

If none of these templates meet your requirements, you can create your own custom UI and use an installer class to control the workflow.

To launch an app at end of the installation you would again probably have to override a method in your installer class.

If all this seems like hard work, it's certainly worth looking at something like INNO Setup or WIX.

JohnC