Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Petr Vones
From: "Rob Mensching" <[EMAIL PROTECTED]> > It's a MSI design decision that makes sense when you consider the way that > Fusion works (BTW, Fusion design frustrates me to no end). I have found another problem with GAC. Doing a full product update results in no files installed into the GAC. I use

Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Petr Vones
From: "Rob Mensching" <[EMAIL PROTECTED]> > It's a MSI design decision that makes sense when you consider the way that > Fusion works (BTW, Fusion design frustrates me to no end). Ok, thanks. Fortunately I managed to run "command /c net start MyService" after InstallFinalize which is sufficient.

Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Rob Mensching
users@lists.sourceforge.net Subject: Re: [WiX-users] Starting .NET service depending on assembly installed to GAC From: "Bob Arnson" <[EMAIL PROTECTED]> > Not really. MSI hands off assemblies to Fusion, which commits them > during InstallFinalize. The assemblies aren't availab

Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Bob Arnson
Petr Vones wrote: > Is that general problem of MSI or just WiX ? MSI > Can I perform an action after InstallFinalize, at least to use NET START > command or so ? > You would need to use a custom action; the standard action to start services doesn't work after InstallFinalize. -- sig://boB h

Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Petr Vones
From: "Bob Arnson" <[EMAIL PROTECTED]> > Not really. MSI hands off assemblies to Fusion, which commits them during > InstallFinalize. The assemblies aren't available before then. Is that general problem of MSI or just WiX ? Seems to be a showstopper issue to me to continue using WiX :-/ Can I p

Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-11 Thread Bob Arnson
Petr Vones wrote: > I have problem with automatic start of a .NET service which depends on an > assembly which is installed into the GAC. > > It seems as the GAC installation is not finished when the installer is > trying to start the service (getting FileNotFoundException). Is there any > solut

[WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-11 Thread Petr Vones
Hi, I have problem with automatic start of a .NET service which depends on an assembly which is installed into the GAC. It seems as the GAC installation is not finished when the installer is trying to start the service (getting FileNotFoundException). Is there any solution ? Thanks, Petr -