Tagged Questions
1
vote
1answer
38 views
Wix: Feature Condition on Property set by Custom Action
In my WIX setup package I have a feature that contains merge module and must be installed conditionally. The condition should be evaluated using property set by custom action. Here's how this looks in ...
1
vote
1answer
36 views
What causes a 1723 DLL not found error in a WIX installer
I'm working with a WIX installer and keep getting this error message:
WIX Error 1723. There is a problem with this Windows Installer
package. A DLL required for this install to complete could ...
1
vote
1answer
26 views
Dynamically changing CAs in WIX Install Sequence
I'd find it really useful to decide what custom actions I call at certain points in my installation depending on properties I've set in the installer.
For example; if I want to use separate DLLs for ...
1
vote
1answer
38 views
Inserting Custom Action between Dialogs (InstallUISequence) in WiX
I have two custom dialog boxes (plus the required ones ExitDlg, FatalErrorDlg, etc.), the first one sets a property using an Edit control and the second one shows this property using a Text control. ...
1
vote
1answer
54 views
WiX Custom Actions in 64 bit
I am trying to run a managed custom action in WiX 3.5 as a 64 bit process. All projects involved are configured to be built in x64 (as specified here).
My understanding is that the key to this is the ...
0
votes
3answers
59 views
What's wrong with my custom Action?
I've tried tons of times to try to use a custom action just to simply copy a file to another place. I do think this should be easily worked, but... I was frustrated that it is always failed!
I post ...
1
vote
1answer
72 views
WiX custom action on major upgrade rollback not run
I have a WiX setup which has
<MajorUpgrade Schedule="afterInstallInitialize"
DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." />
If an ...
1
vote
1answer
112 views
WiX msi custom action not running on limited privileges on Windows 7
have been trying to create a WiX installer for my latest project. I have a strange issue where if I run the msi via cmd prompt as admin it works fine, the custom actions kick off without a fuss and ...
0
votes
1answer
112 views
Cancel the custom action execution and Rollback using wix burn Boostrapper UI
I am trying to create wix burn bootstrapper that install my msi. I am using Wix 3.7.
I have few custom actions with my msi. If I cancel the setup while 1st (or any) CA running, all other CA are called ...
1
vote
1answer
255 views
WiX Bootstrapper - Install MSI from CustomAction
I have created a Bootstrapper with WiX. It contains a chain with two MSI-Packages. When it is running, It is calling a .NET-CustomAction which is showing a View (like this sample: ...
1
vote
1answer
92 views
WiX: How to get if this is “Installed” state in c# custom action function?
I have a custom action c# function which need to know inside what is the state "Installed" or "NOT Installed".
How to get this state?
I.e. I need to know this state (Installed OR NOT Installed) in ...
2
votes
1answer
191 views
MSI custom action installer state interaction
I've got a custom action that runs a UI after the .msi deploys files. This UI sets the configuration and also deploys various things to various places (SQL servers, etc..). The UI itself is running in ...
0
votes
1answer
64 views
Silent Installation - .net 4 prerequisite
For silent installation if the .net4 Framework is not available , I need to add the message to log saying installation can continue only if .net4framework is installed.
Is this possible to implement ...
0
votes
1answer
100 views
How to use a same DllEntry multiple times in custom action?
I have a CustomAction written in C#. I want to call the DllEntry twice in my wix installer code. How can I achieve this?
I am doing this in the following manner. But this is working for me. Is there ...
-3
votes
1answer
204 views
WiX: Passing Properties to Custom Actions, already looked through SO, *still* not working :(
What am I doing wrong??
Please, if your answer is that I should be using the builtin service installing stuff in WiX, don't bother answering. It doesn't work very well for me and I don't want to go ...
0
votes
1answer
153 views
Wix Custom action, run exe, error code 1721
I have read many of the examples on the internet, but I cannot figure out what is going wrong.
I have a WiX installer that copies all MySql server files to a certain location on install. Then I want ...
1
vote
1answer
84 views
Custom Action modify files in Program Files folder
I want to create Custom Action that modify some files in Program Files folder
But when I run I got the error that the access is denied and the installer rolls back
running as Administrator also ...
0
votes
2answers
83 views
Custom Action before starting service only
I'm trying to run custom action before starting service only.
Now I'm doing this way.
<Custom Action="Parameter7" Before="Action7">LANGUAGE = "United States - English"</Custom>
...
0
votes
0answers
133 views
OpenFileDialog crash when pressed 'cancel' or 'close' button in Custom Action WiX
I facing a major problem regarding OpenFileDialog. I made a custom action for getting license file from the user. It works properly in positive result, means when user choose proper licence file. But ...
0
votes
1answer
412 views
Wix Custom Action Properties - Why doesn't this work?
I have the following Wix fragment, that invokes one of two custom actions depending on whether it is installing or uninstalling:
<?xml version="1.0" encoding="UTF-8" ?>
<Wix ...
0
votes
1answer
123 views
WiX Extensions Command Line Custom Action Not Executing
The previous version of the application I am working on (along with its installer) was written by someone else. I have been having a hard time getting the update functionality to work, so I want to ...
1
vote
1answer
287 views
How to execute a WiX custom action C++ DLL file with dependencies?
I have already achieved a custom command without dependence without any problem.
But here it is a custom command that need to be link with four other dll to work.
<Binary Id="libeay32" ...
0
votes
1answer
294 views
Showing WiX dialog from c# custom action during uninstall
I'm having trouble displaying a dialog during the uninstall sequence that runs from the shortcut and add/remove programs with basic UI. It seems to be skipping the InstallUISequence that is shown ...
0
votes
1answer
251 views
Wix custom action execute cmd not working
I'm trying to execute a custom action during a wix installation and getting an error when the custom action gets called. I want to add the permission group "Everyone" with full control to a folder ...
1
vote
1answer
221 views
Wix Custom action to set directory uses default value instead of value set in previous custom action
I want to use a custom action to set a property and then immediately use that newly set property's value to update a directory. So far I have a custom action that finds an install path for a separate ...
1
vote
1answer
167 views
Display dynamic content on exit/finish dialog - WIX Installer
I want to show messages on finish/exit dialog based on the instance report.
While installing if something goes wrong, I want to show error message on Finish screen else show success message.
I am ...
1
vote
1answer
113 views
Running 2 custom actions at the same time gives error
I have 2 custom actions running at the same time. How do I schedule them to run after the 1st one has finished. Here is my code:
<CustomAction Id="StartAppOnExit1" FileKey="InterUMIEXE" ...
1
vote
0answers
416 views
WiX Custom action not executing
I am having trouble with a Wix custom action not executing. The installer continually rolls itself back even when the custom action returns ActionResult.Success.
Custom Action (C#)
[CustomAction]
...
0
votes
1answer
66 views
2 simultaneous exe running WIX
I have 2 custom actions running 2 exe. But they get extracted at the same time and the processes block each other during install. How do I schedule them one after the other?? Please help..
Thanks in ...
0
votes
1answer
398 views
How to pass the Parameters to custom action method in wix
I am new to create MSI installer using wix tool,here i have a query please help me how to resolve this .
My query is : I have create a custom UI , in this i have a combo box control and i have bind ...
1
vote
2answers
71 views
Error 2753 feature tree..How do I avoid?
Is there a way I can avoid this error 2753 ?? I want to de select a few features during installation time and if i de select i get this error. How do i avoid that and still be able to select the ...
1
vote
1answer
181 views
how to get output variables from Deferred Custom Actions in WiX?
I am deploying a product that contains encrypted fields in some config xml files.
During installation, I am creating a Self-Signed Certificate on the target machine. Then I use it to encrypt some ...
0
votes
0answers
109 views
Registering ActiveX-exe files in WiX
I am just started using WiX installer. I'm having problems when I want to register ActiveX-exe files. I am trying to register them with custom actions, the code:
<CustomAction ...
0
votes
1answer
115 views
WiX / MSI refering to a file from a custom action in C++
Is there a way to refer to a file declared on wix code, for instance:
<DirectoryRef Id="MAIN_INSTALLLOCATION">
<Component Id="CMP_config_system" ...
0
votes
1answer
178 views
Windows Installer, Error 2896 from Custom Action after successful execution
I have a custom action dll, written in C++, which is invoked using a button during install. The purpose of the custom action is to capture the clipboard contents and evaluate whether or not the ...
2
votes
1answer
144 views
Is it possible to paste into an masked edit control in a windows installer?
Starting off with what I need the end result to be:
Customer is able to paste a product key, of the correct format, off of the clipboard into an input box during the install.
Where I am at the ...
0
votes
1answer
168 views
'wix execute batch before uninstall with administrator
My WiX XML file installs app that contains windows-service named OLOLO_SERVICE (for example). I want to stop this service when installing/reinstalling my app.
I use CustomAction with ExeCommand='sc ...
0
votes
0answers
129 views
WiX Custom Action not setting ACL
I have a C# custom action running in WiX:
[CustomAction]
public static ActionResult SetAppDataSecurity(Session session)
{
session.Log("Running security...");
...
4
votes
2answers
295 views
Wix: Add to Listbox from C++ Custom Action
Hi i'm trying to check the COM Ports on a users machine and then insert them into a listbox via a custom action in c++. Although it is not displaying the information and when I debug all it is saying ...
0
votes
1answer
451 views
WiX. Rollback custom action when is canceled installation
I have a custom action
<CustomAction Id="myActionId" BinaryKey="myAction" DllEntry="MySimpleAction" Execute="immediate" Return="check" />
<InstallExecuteSequence>
<Custom ...
1
vote
2answers
438 views
WiX. C# Custom Action after InstallInitialize
I create simple C# custom action
[CustomAction]
public static ActionResult MySimpleAction(Session session)
{
MessageBox.Show("It's work!");
return ActionResult.Success;
}
<Binary ...
0
votes
1answer
996 views
wix - remove old program folder before install
I need installer to remove old install dir (if exists), just before installer starts copy new files. This folder contains some files and subfolders generated during program usage and they are not ...
-3
votes
1answer
174 views
Setting install path based on machine name with WiX
I'm surprised I haven't been able to find a simple answer for this, since it seems like it would be a common thing to do.
I'm trying to set the install path based on the machine name of the server it ...
0
votes
1answer
186 views
WiX. Custom Action rum sqlcmd and processing error
I have a custom action
<CustomAction Id="SqlCmdExeRESTORE" BinaryKey="WixCA" DllEntry="CAQuietExec" Return="check" Execute="deferred" Impersonate="yes" />
<CustomAction Id="SqlCmdRESTORE" ...
2
votes
1answer
218 views
WiX. Run a custom action when a checkbox is checked
I have two files Product.wxc there i wrote
<Property Id="CheckBoxProp">
and Custom Action
<InstallExecuteSequence>
<Custom Action="MyCustomAction" ...
0
votes
1answer
334 views
Execute batchFile with command line argurment in silentmode
I want to execute my batchfile which takes 3 cmd line arguments in which it should execute silent mode[should not see the console].Below is my wix code:
<CustomAction Id="ScrptsMngr" Property= ...
0
votes
2answers
96 views
Windows installer log files showing a large group 2360 messages
I am trying to run an installer using the MSI command line option so that I can run it in debug mode and see the logs.
The logs that I am getting are quite large (near to 1 MB) and they are full of ...
0
votes
1answer
198 views
Running a Custom Action on conditions issue
Can anyone tell me why this is not working please?
I have two registry checks to check if Visual C++ Redistributables are installed:
<Property Id="REGDBKEYEXISTX64">
<RegistrySearch ...
1
vote
2answers
441 views
How can I read custom action's executable output in WiX?
I'm making MSI installer in WiX. During installation I want to run an executable from a custom action and get its standard output (not the return code) for later use during installation (with Property ...
5
votes
2answers
158 views
Is it ok to rename the class and assembly generated (for Visual Studio) for a WiX C# custom action?
When I use WiX 3.x with Visual Studio 2010 to create a Windows Installer XML "C# Custom Action Project" called "MyCustomActions", it generates the following files:
"CustomAction.config", ...


