views:

252

answers:

2

Hi everyone,

I'm working on a project which needs some third party components prequisites to be installed before installing my .NET Application. Can someone tell me how to do it ?? I'm using .NET prequisites components to install the components like (.NET Framework 3.5,Windows installer 3.1,Crystal Reports) but what if i have some third party components which is not listed in prequisite lists ... Please let me know how can i achieve this ??

Thanks & Regards Prakash N

+1  A: 

create custom installer and do in installer class what you want

ArsenMkrt
yes i'm using the custom installer class but i want to know if some component fails to install then how can i rollback the installation. I have rollback method but its not working .. can you please let me know how can i achieve it ...
rollback should work as I know...
ArsenMkrt
A: 

Ideally, the 3rd party components you refer to would be distributed via a Merge Module. Check and see if they are, then you can simply include them with your installer.

William Leara