Tagged Questions
3
votes
2answers
553 views
Wix: Write File in Custom Action
i got a problem with wix and managed custom actions: in my custom action i create a file and save it in the INSTALLLOCATION path. It seems like it works, no exception is thrown. But after the ...
3
votes
1answer
2k views
Wix C# Custom Action .Net 4 Error
I am trying to use my first custom action in Wix and I am receiving error 2896: Executing action CustomActionTest failed.
I am using VS 2010, Wix 3.5, 64-bit Windows 7 Ultimate, .NET Framework 4
...
3
votes
1answer
1k views
WiX - Passing parameters to a CustomAction (DLL)
I've got a DLL from an old WiSE installer that i'm trying to get working in WiX, so i'm pretty sure the DLL works with MSI-based installers.
Here is my definition:
<Binary Id="SetupDLL" ...
1
vote
1answer
351 views
WIX extracting Binary table data to TempFolder
During install I need to extract a text file from Binary data and place it in TempFolder so it can be used by a dll I don't control. It needs to be passed the file-name of the text for processing.
I ...
1
vote
2answers
474 views
Wix: Set semicolon to CustomActionData
I have a problem with setting data that contains semicolons to CustomActionData property.
By default CustomActionData class uses semicolon as DataSeparator and it breake my data, when it contains ...
1
vote
1answer
135 views
wix - no rows with my CA in InstallExecuteSequence Table
i have code like this
<Fragment>
<CustomAction Id="IsPrivileged"
Error="You should be an adminuser" />
<InstallExecuteSequence>
...
1
vote
1answer
133 views
msi file not running when called through wix customaction
I have the following in my wix project but the msi file (which is valid and runs from the command line) will not run either with or without the silent parameter
<InstallExecuteSequence >
...
1
vote
1answer
223 views
Wix: Passing an object from one CustomAction method to another - Best Practice?
I am interested in the best practice of the following scenario. I have a CustomAction method that hits a web service and returns some information that I use to populate a combo box. Later in the ...
1
vote
1answer
616 views
How do I create an empty custom table in Wix?
How do I get Wix to include a CustomTable with no rows in the final MSI? If I simply define the table like this
<CustomTable Id="MyTable">
<Column Id="Id" Type="string" ...
0
votes
0answers
169 views
wix - two managed custom actions type 1 in single dll
One dll contains two C# custom actions. Here is code how i calling them:
<Binary Id="InstancesDLL" SourceFile="C:\New\Instances.CA.dll"/>
<CustomAction Id="SendStrToCA" Property="Exec" ...
0
votes
1answer
312 views
WIX Installer Custom Actions (CA) which require an external library can't find it
I have a WIX installer that calls two C# custom actions.
The first runs a routine to load the WIX session with default values into GUI prompts for application settings. The GUI then prompts the user ...
0
votes
2answers
792 views
WIX installer with Custom Actions: “built by a runtime newer than the currently loaded runtime and cannot be loaded.”
I have a WIX installer that executes Custom Actions over the course of install. When I run the WIX installer, and it encounters its first Custom Action, the installer fails out, and I receive an error ...
0
votes
2answers
36 views
MapPath or equivalent to use in an installation application
I need to check a .config file in an installation application (iis custom action in a WIX project). The user picks a website and enters a virtual directory name. I can't do a http read to retrieve the ...
0
votes
1answer
231 views
WiX CustomAction Third Party Library Dependency
I implemented Custom Action DLL that needs to run when the product is being unistalled or reinstalled. Custom Action DLL (C++) references third party library which is a COM object that needs to be ...