Re: [WiX-users] Simple MSI failing: Error 3: -2147287038

2014-02-20 Thread JoeMarks
@eyoung100: no, I dont have any roaming profile. @Phill Higland: the command prompt recognizes de command dism on any directory, so maybe we don't even have to specify a directory to it. It works for me just as "dism.exe /online /enable-feature /featurename:NetFX3 /all /NoRestart" -- View this

Re: [WiX-users] Simple MSI failing: Error 3: -2147287038

2014-02-19 Thread JoeMarks
Yes, you are correct, after some search I got to this thread So by setting the command to [WindowsFolder]Sysnative\dism.exe would fix that, but my problem persists... -- View th

Re: [WiX-users] Simple MSI failing: Error 3: -2147287038

2014-02-19 Thread JoeMarks
I'm running the installer on Desktop, so it's not on a Networked drive. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Simple-MSI-failing-Error-3-2147287038-tp7592771p7592788.html Sent from the wix-users mailing list archive at Nabble.com. --

Re: [WiX-users] Simple MSI failing: Error 3: -2147287038

2014-02-19 Thread JoeMarks
@eyoung100: So it mean I can't test this on a Virtual Machine? @Phill: Yes, I also posted this question on stackoverflow to improve my chances of getting an answer :) That sounds interesting, any way to check if the installer is indeed being run again? Thank you for your replies. -- View this

Re: [WiX-users] Simple MSI failing: Error 3: -2147287038

2014-02-19 Thread JoeMarks
I thing the mailing list hides the "raw" text, it's only visible on the thread in here Even if I remove the CustomAction from the installer i get the same log file, so I guess i

[WiX-users] Simple MSI failing: Error 3: -2147287038

2014-02-19 Thread JoeMarks
Hi everyone! I was doing some changes to an existing installer, and I needed to enable .Net 3.5 on Windows 8. This can easily done with the comand "dism.exe /online /enable-feature /featurename:NetFX3 /all /NoRestart". So I was doing a simple Installer to add to my Bootstrapper that would run

Re: [WiX-users] path depends on os

2013-08-30 Thread JoeMarks
Not sure, but I think that what you are looking for is [ProgramFilesFolder] Take a look at http://wixtoolset.org/documentation/manual/v3/howtos/files_and_registry/add_a_file.html Not directly related to m

Re: [WiX-users] Radio Button passing parameter to Custom Action

2013-08-20 Thread JoeMarks
Managed to get it right, got it from this stackoverflow post Changed the "Next Button" to And then I can get the value of the property on my Custom Action: Hope this will be helpful to someone.

[WiX-users] Radio Button passing parameter to Custom Action

2013-08-20 Thread JoeMarks
Hello everyone! In my current project, I must have the user selecting on of many radio buttons, and execute a custom action according to the chosen value. My current Dialog (the part that matters) is as follows: And in my Product.wxs i have: So as you can see, in my "Next" Button I want to

Re: [WiX-users] Heat and harvesting

2013-08-09 Thread JoeMarks
Found the answer, I was doing it all wrong. The code that got it working: Keep in mind that I'm still working on my heat commands, but it this is the way that heat is called on wix. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Heat-and-harves