Re: [WiX-users] How to execute CA after path is applied

2013-12-07 Thread Christopher Painter
From: "Blair Murri" Sent: Saturday, December 07, 2013 9:51 PM To: "General discussion about the WiX toolset." Subject: Re: [WiX-users] How to execute CA after path is applied Don't let the name "Major Upgrade" fool you. Major upgrades are the easiest/

Re: [WiX-users] How to execute CA after path is applied

2013-12-07 Thread Blair Murri
dvanced Windows Installer features. Major upgrades should be your starting point, and for the vast majority of products, will always be the superior choice. -Blair > Date: Fri, 6 Dec 2013 15:49:12 -0200 > From: nicolas.alva...@gmail.com > To: wix-users@lists.sourceforge.net > Subje

Re: [WiX-users] How to execute CA after path is applied

2013-12-06 Thread Nicolás Alvarez
El viernes, 6 de diciembre de 2013, Smagin Alexander escribió: > > I do not want make a Major update due to it's difficult for end users. > it's necessary to uninstall previous version and then install new one. I > would want to run one file without special command line that make change > only one

Re: [WiX-users] How to execute CA after path is applied

2013-12-06 Thread Smagin Alexander
assemblies contain an >> embedded tlb (but regasm generates one). >> >> -Original Message----- >> From: Smagin Alexander [mailto:kf-...@list.ru] >> Sent: Thursday, December 05, 2013 1:44 PM >> To: General discussion about the WiX toolset. >> Subject: Re:

Re: [WiX-users] How to execute CA after path is applied

2013-12-06 Thread Phil Wilson
d to deploy the tlb files with > your installer as I don't believe that managed assemblies contain an > embedded tlb (but regasm generates one). > > -Original Message- > From: Smagin Alexander [mailto:kf-...@list.ru] > Sent: Thursday, December 05, 2013 1:44 PM > To: Ge

Re: [WiX-users] How to execute CA after path is applied

2013-12-05 Thread Hoover, Jacob
iX toolset. Subject: Re: [WiX-users] How to execute CA after path is applied   Yes, I register library by executing regasm.exe "library" /silent /codebase /tl in CA during original install It was made before me by previous developer. During uninstalling the library deregistered in the

Re: [WiX-users] How to execute CA after path is applied

2013-12-05 Thread Smagin Alexander
  Yes, I register library by executing regasm.exe "library" /silent /codebase /tl in CA during original install It was made before me by previous developer. During uninstalling the library deregistered in the same way. I did not change interface of the library in last change but simple patchi

Re: [WiX-users] How to execute CA after path is applied

2013-12-05 Thread Phil Wilson
If you registered that type library with a CA in the original install that may not have been the best option, TLB entries are basically just a bunch of HKLM\Interface entries that can be put in the registry (Heat may even extract them) so there is no need to run any code at all. So it matters how y

[WiX-users] How to execute CA after path is applied

2013-12-05 Thread Smagin Alexander
I have created a path (msp file)  as difference beetwen small update 1.0.0.0 to 1.0.0.1. One dll is changes. this dll is .Net assembly (COM Object). So I need to reregister it ( generate new tbl file) after the patch is applied. Does the path supported to perform some custom actions such as run