Monday, February 6, 2012

How to reg 64-bit assembly using VS2005 setup on 64-bit

November 5, 2009 by · Leave a Comment 

I got one problem on registering a 64bit assembly during theinstallation. The installation package was developed using VS2005setup project.I could not invoke this assembly after installation. I believe thereason is the assembly had not been registered properly duringinstallation.(The assembly works well if I run Framework64/regasm.exe manually ) Ialready set the Register property of the assembly [...]

Disabling Repair option from installer

November 5, 2009 by · Leave a Comment 

I was facing problem to disable “Repair” option from msi installer. I found the solution in little time. If you haven’t install MSI ORCA then install it. Open the msi file in MSI ORCA editor. Select “Property” from left pane (Table pane), and Right click and ‘Add Row’ with property name ‘ARPNOREPAIR’ and value ’1′ [...]

Disabling “Change” option from installer

November 5, 2009 by · Leave a Comment 

I was facing problem to disable “Change” option from msi installer. I found the solution in little time. If you haven’t install MSI ORCA then install it. Open the msi file in MSI ORCA editor. Select “Property” from left pane (Table pane), and Right click and ‘Add Row’ with property name ‘ARPNOMODIFY’ and value ’1′ [...]