Re: [WiX-users] Custom Action

2010-11-03 Thread sagar shinde
Hi, I have mentioned in mail that my vbscript is working fine. there is no error in it.but i still want to know why this cmd custom action is failing My earlier code was containing custom action which calls cmd. *i have two different installers for 32 bit Os and 64 bit Os which cantains same cust

Re: [WiX-users] Wix 3 to Wix 3.5 : Now the website is not created (IIS7)

2010-11-03 Thread Carlos Alberto Costa Beppler
What did you do to resolve the problem? On Thu, Nov 4, 2010 at 00:39, Joe Osman wrote: > Thanks I've resolved the issue > > On 4/11/2010 1:32 p.m., Blair wrote: > > 3.5.229.0 seems quite old. Do you mean 3.5.2229.0? > > > > Every bit of the log you provided was "success" (Return value 1.). Then

[WiX-users] How to schedule a custom action after WriteIIS7ConfigChanges

2010-11-03 Thread Joe Osman
I want to schedule a custom action to execute after WriteIIS7ConfigChanges but my build fails and I get the following error: Error177Unresolved reference to symbol 'WixAction:InstallExecuteSequence/WriteIIS7ConfigChanges' in section 'Product:*'. Here is the code: NOT Installed AND NOT

Re: [WiX-users] Wix 3 to Wix 3.5 : Now the website is not created (IIS7)

2010-11-03 Thread Joe Osman
Thanks I've resolved the issue On 4/11/2010 1:32 p.m., Blair wrote: > 3.5.229.0 seems quite old. Do you mean 3.5.2229.0? > > Every bit of the log you provided was "success" (Return value 1.). Then the > next part of the log is incomplete, but does not appear to include any > errors. > > Could you

Re: [WiX-users] Wix 3 to Wix 3.5 : Now the website is not created (IIS7)

2010-11-03 Thread Blair
3.5.229.0 seems quite old. Do you mean 3.5.2229.0? Every bit of the log you provided was "success" (Return value 1.). Then the next part of the log is incomplete, but does not appear to include any errors. Could you please supply more of the log starting with the WriteIIS7ConfigChanges action? Or

Re: [WiX-users] wix200x.targets is missing in 3.5 binaries zip

2010-11-03 Thread Blair
Please open a bug (that way, this doesn't get lost). Go ahead and attach your patch to the bug. -Original Message- From: Dominik Guder [mailto:o...@guder.org] Sent: Wednesday, November 03, 2010 6:15 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] wix200x.targets is missing in

[WiX-users] Wix 3 to Wix 3.5 : Now the website is not created (IIS7)

2010-11-03 Thread Joe Osman
I've used WIX 3 with VS 2008 to create a website on IIS 7 - that worked fine. I've upgraded to the latest build of Wix 3.5.229.0 with VS 2010 and now the website is not created. Here is the code for creating the website: Here is the MSI debug log: MSI (s) (58:E4) [18:24:30:503]: D

Re: [WiX-users] how to get a file extension associated with an OS program

2010-11-03 Thread Socky, David R (GE Energy)
Hi Simon (and anyone else), Thank you for your response. However, I don't see the extension you are trying to associate with Visual Studio in your example. Here is what I'm trying to do: We are installing a bunch of legacy files that have a .wri extension. For NT, Win2000, and XP, the extens

Re: [WiX-users] Custom action entrypoints

2010-11-03 Thread Christopher Painter
I have multiple .CA.DLL files in my installer so I'm not sure what that problem is.  As for the 16 entry points per DLL, I think I recall someone writing that they were able to alter the source to SfxCA ( EntryPoints.def and EntryPoints.h ) to get around that limitation.     Christopher Painter,

[WiX-users] Custom action entrypoints

2010-11-03 Thread Wang, Miaohsi
Hello, I created a second custom action dll because of the max 16 entrypoint limit. I included the two CA dll's in my WiX install project as shown below: My problem is that it seems that the CA's in the second dll do not get recognized by MSI. For instance, CA "RestoreINSTALLDIR" bel

Re: [WiX-users] Custom Action

2010-11-03 Thread Simon Dahlbacka
I had a similar problem a long while ago, check this thread: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/adding-non-default-extension-td698069.html#a698071 On Wed, Nov 3, 2010 at 7:46 PM, Socky, David R (GE Energy) wrote: > In a Wix install project (using Visual Studio 2010 an

Re: [WiX-users] Custom Action

2010-11-03 Thread Socky, David R (GE Energy)
In a Wix install project (using Visual Studio 2010 and the latest Wix), how do I associate a file extension with a well known Windows program like Notepad or Wordpad? I know how to associate an extension with a program I'm installing, but in this case, I'm not installing Notepad or Wordpad. Any h

Re: [WiX-users] Custom Action

2010-11-03 Thread Wilson, Phil
This is very confusing. Your log of the error appears to be about your earlier custom action , command: /c RD /S /Q "C:\Program Files\ultac" , not your new VBScript. It's still true that on UAC systems an immediate custom action will run with limited user privilege even if your are administrat

[WiX-users] wix200x.targets is missing in 3.5 binaries zip

2010-11-03 Thread Dominik Guder
Hi, I'm not subscribed to dev list, so I'll try it here: wix200x.targets is missing in 3.5 binaries zip file. perhaps you can add this before 3.5 release. See following patch from my local hg clone # HG changeset patch # User gudedo1 # Date 1288789478 -3600 # Branch wix35 # Node ID 5adec60d77

Re: [WiX-users] Custom Action

2010-11-03 Thread sagar shinde
Hi, Thanks for replay,I got one solution to delete Folders WiX RemoveFolder was unable to delete folders as it was containing user data. So i was trying to delete that folder with cmd which was failing to delete folders so i created property with VBScript and folders are deleted successfully Thi