Re: [WiX-users] Check for IIS application pools

2009-04-07 Thread Alex Cater
can i check for an installed IIS and list the available application pools? The avaliable application pools should be listed in a listbox control. If you want to take the DTF route then this may help: WiX and DTF: Using a Custom Action to list available web sites on IIS -- View this message

Re: [WiX-users] Check for IIS application pools

2009-04-07 Thread Luke Bakken
> can i check for an installed IIS and list the available application pools? > The avaliable application pools should be listed in a listbox control. %SystemRoot%\system32\cscript.exe %SystemDrive%\Inetpub\AdminScripts\adsutil.vbs ENUM "/W3SVC/AppPools/" Look into the adsutil.vbs script for how t

Re: [WiX-users] Check for IIS application pools

2009-04-07 Thread mcheshier
We had to write a bunch of ADSI custom action code using C# and the DTF. It's not fun but it can be done. Hello, can i check for an installed IIS and list the available application pools? The avaliable application pools should be listed in a listbox control. Thanks Thomas Bahn ---

Re: [WiX-users] Check for IIS application pools

2009-04-07 Thread Rob Mensching
Yes, it is possible but requires a fair bit of CustomAction work. We haven't added such a thing to the WiX toolset yet... Bahn Thomas wrote: > Hello, > > can i check for an installed IIS and list the available application pools? > The avaliable application pools should be listed in a listbox cont

[WiX-users] Check for IIS application pools

2009-04-03 Thread Bahn Thomas
Hello, can i check for an installed IIS and list the available application pools? The avaliable application pools should be listed in a listbox control. Thanks Thomas Bahn -- _