Re: [WiX-users] CustoAction as early as possible

2009-01-27 Thread Richard
In article <1233038277636-674.p...@n2.nabble.com>, taras writes: > I am trying to invoke CA as early as possible. What does your CA do? Maybe you don't even need a CA, but there's no way to tell until we know what it does. -- "The Direct3D Graphics Pipeline" -- DirectX 9 draft availa

Re: [WiX-users] CustoAction as early as possible

2009-01-26 Thread taras
Thank you Bob. It is exactly what I needed... Bob Arnson-6 wrote: > > taras wrote: >> I am trying to invoke CA as early as possible. Ideally on msi startup but >> on >> showing the first UI dialog will do. >> >> >> > > If you want a custom action to run during the UI, use InstallUISequenc

Re: [WiX-users] CustoAction as early as possible

2009-01-26 Thread Alexander Shevchuk
When UI is in use during installation (UI level is not None), Windows Installer starts with actions from InstallUISequence table. In case when UI level is set to None, you still want to schedule custom action in InstallExecuteSequence table. In that case you may want Execute attribute to be "fi

Re: [WiX-users] CustoAction as early as possible

2009-01-26 Thread Bob Arnson
taras wrote: > I am trying to invoke CA as early as possible. Ideally on msi startup but on > showing the first UI dialog will do. > > > If you want a custom action to run during the UI, use InstallUISequence instead. Note that it won't run during a silent install. -- sig://boB http://joyof