views:

214

answers:

2

I've a deployment project of windows installer, with some of prerequisites.

I want to perform some operations while installing the product, for that I need to put 2 radio buttons on installer setup project,

do anyone tell me how can I alter setup screens with new controls provided on canvas ?

+1  A: 

If I understand your question correctly, you are talking about a need write a CustomAction. Here is how you can create custom dialogs for your setup. Also see MSDN for RadioButtons dialog box.

KMan
A: 

Hi KMan,

your article MSDN helped, thanks,

what I did is, I applied condition on registry key, and programatically checked if that registry key is installed or not to check which radio button user has selected while installing.

Registry Condition Check

Tumbleweed
Glad, I was able to help (0:
KMan