Re: [WiX-users] Stop IIS on uninstall

2006-08-24 Thread Joe Kaplan
What I've done in the past is just include a ServiceControl element in the component: You might change the Start and Stop attributes to get what you want. I was installing an ISAPI filter. The schema might be a little different in WiX3, but you get the idea. You shouldn't need your own CA

Re: [WiX-users] Stop IIS on uninstall

2006-08-24 Thread david adams
emoves the Website, Application Pool, and all files / folders. David Adams MSN MessengerID: [EMAIL PROTECTED] >From: JosephMM <[EMAIL PROTECTED]> >To: wix-users@lists.sourceforge.net >Subject: Re: [WiX-users] Stop IIS on uninstall >Date: Thu, 24 Aug 2006 12:12:04 -0700 (PDT)

Re: [WiX-users] Stop IIS on uninstall

2006-08-24 Thread JosephMM
What I did was I had a bat file that was installed with my package. My custom action refered to the FileKey of that bat file and inside the bat file all I had was "iisreset /stop". Unfortunately, it's really ugly because a command prompt pops up. John Hidey (The C# Junkie) wrote: > > All > > H