Re: [WiX-users] icon change of the installer

2010-01-03 Thread Sascha Beaumont
No, you would need to create your own external UI and bootstrapper. On Wed, Dec 30, 2009 at 4:17 PM, Sanjay Rao s...@noida.interrasystems.com wrote: Hi All, I have two issues for which I have not found any solution- 1. I need to change the icon of created MSI file using WIX. 2. I need to

Re: [WiX-users] icon change of the installer

2010-01-03 Thread Sebastian Brand (Instyler Software)
Hello, Note that the .msi file type does not have an icon, the icon you see in Windows Explorer is from msiexec.exe of the local system. It's not in the .msi file itself. You can only change that icon if you use an .exe file instead of the .msi Best regards, Sebastian Brand Deployment

Re: [WiX-users] differentiating between COM C++ dlls from installerdatabase (.msi)

2010-01-03 Thread nagaram.c
Thanks Dan, is there an api that you could suggest for extracting the file from msi database? -Original Message- From: d...@rms.ro [mailto:d...@rms.ro] Sent: Friday, January 01, 2010 1:30 AM To: nagara...@symphony.cc; General discussion for Windows Installer XML toolset. Subject: Re:

Re: [WiX-users] writing to console from smoke.exe using customaction

2010-01-03 Thread nagaram.c
Thanks Blair, yes I have read it in MSDN, but the example code for such configuration uses Microsoft Installer project workspace in which there is a properties toolbar for selecting either immediate or differed modes for the selected CA, here in this case I created the CA DLL using VC++ project

[WiX-users] Overwrite property only if it was not set on command line

2010-01-03 Thread Alex Ivanoff
I have a property that has a default value. I want to change this property in custom action only if this property was not set on command line. How do I do this? -- This SF.Net email is sponsored by the Verizon Developer

Re: [WiX-users] Overwrite property only if it was not set on command line

2010-01-03 Thread Sebastian Brand (Instyler Software)
There's no option to find out if the property was set using the command line. You'll have to handle your defined default value for the property instead. For example, set the default value of your property PROPERTY_RUNCA to Secret. For the custom action, set a condition to PROPERTY_RUNCA=Secret.