Tagged Questions
The dtf tag has no wiki summary.
5
votes
2answers
2k views
How do I encrypt app.config file sections during install with WiX?
I have found an example for encrypting a web.config during installation here, but my app is a windows service. The aspnetreg_iis method works only for web.config files.
I know how to programatically ...
3
votes
3answers
385 views
How to conditionally exclude features from “FeaturesDlg” in WiX 3.0 from a managed Custom Action (DTF)
I am trying to put together an installer using WiX 3.0 and I'm unsure about one thing. I would like to use the FeaturesDlg dialog to allow the users to select features to install, but I need to be ...
2
votes
0answers
37 views
DTF: Update a File within an Archive Without Extracting It
I am using the Deployment Tools Foundation bundled with WiX 3.5. There is an archive that contains a file that I want to update without having to extract it first - the edits are based on user inputs ...
2
votes
1answer
437 views
WiX 3.5.2030.0 CreateDatabase fails with 1603 with DTF external UI handler, works without external UI handler
I have a simple WiX (3.5.2030.0) installer on Windows 7 (Windows Installer 5.0.7600.16385 according to msiexec.exe's properties) that uses the supplied custom action for creating a SQL database. When ...
2
votes
3answers
130 views
Issue with Wix DTF while creating more than one action in a single DTF custom action assembly
DTF does not call the second action if the custom action assembly has more than one action. It always calls only the first action. As a workaround, I am using one action in one assembly. It works ...
1
vote
1answer
49 views
How to extract and run a file during installation
I have created a Custom Action (DTF) with C#.
In that CA, I would like to extract a file from the msi (declared as Binary in wix) and run it with some arguments.
I haven't found any samples or help ...
1
vote
1answer
80 views
Do managed CA's use streamwriter differently?
Has anyone experienced an error in which the custom action's temporary extraction path is appended when creating a file?
I have a managed custom action (64-bit C# DLL using ...
1
vote
2answers
154 views
wix save feature state to property or get feature state in custom action
Can i save feature state and action into property value?
Like <Property id="prop" Value=[!MyFeature]" />
If it's not possible, how i can get feauture state in custom action?
Only using ...
1
vote
1answer
319 views
Accessing InstallShield “Support Files” from DTF (Managed Custom Action)
I have a bunch of .SQL scripts placed in the "Support Files" view of InstallShield.
I want to access those SQL scripts in my custom action (via DTF). How can I do that?
1
vote
2answers
384 views
MakeSfxCA.exe and DLL compiled with Framework 4.0
I have a dll file compiled with Microsoft .NET Framework 4.0
When I am using MakeSfxCA.exe file and passing the dll as one of the parameter to command line it gives me following error message:
...
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" ...
1
vote
3answers
766 views
Interesting custom action written using DTF in Wix
There was a challenging situation happened when i was working with install to provide product key validation. I had to use C++ unmanaged code to validate the key. Actually we had the main validation ...
1
vote
1answer
782 views
How to schedule a deferred custom action from an immediate custom action in Wix/DTF?
I've seen statements to the effect that it is possible, even commonplace, to reference an immediate custom action from a .wxs file, and to have that custom action schedule subsequent (deferred) custom ...
0
votes
1answer
70 views
Adding temporary rows to a custom table
I fell in love with CustomTable to build data-driven WiX installs. I had a custom action that I needed to execute on a dozen or so objects during an installation. Instead of having 12 <Custom ...
0
votes
0answers
9 views
DTF is included with new WIX releases - looking for an example of this for VS2010
msi file reading
Looking for VS2010 example I can test and learn with.
0
votes
0answers
37 views
Get Time Remaining through MSI SDK
We have an external UI for our installation.
We can now retrieve the Progress and ActionData messages by calling SetExternalUI.
I've read that one can show a "TimeRemaining" control in MSI. Is it ...
0
votes
2answers
230 views
Get feature installation cost prior to installation
We're making a custom boostrapper / external UI for our installation.
We want to provide a "Custom Installation" dialog (like in MSI) to allow the user to choose feature(s) they want to install or ...
0
votes
1answer
168 views
Canceling installation from an External UI
I have created an C# application that installs MSI's by calling Installer.InstallProduct. I have set the application to be the "external UI" by calling Installer.SetExternalUI and passing an ...
0
votes
1answer
241 views
Difference between MsiInstallProduct and Installer.InstallProduct?
What's the difference between these two?
MsiInstallProduct and Installer.InstallProduct. From what I've read, the only difference is that the first returns an int that will dictate if the ...
0
votes
2answers
338 views
DTF and MsiGetProperty
Related to: Accessing InstallShield "Support Files" from DTF (Managed Custom Action)
I need to read the property SUPPORTDIR. According to this forum ...
0
votes
1answer
193 views
DTF and InstallShield (Licensing)
First, a little background.
We are an exclusive Microsoft shop and all of our products are being deployed using MSI installers authored exclusively in InstallShield (we still have installers being ...
0
votes
2answers
91 views
Are Distributed Transactions a good idea for enabling rollback of database upgrades in Windows Installer Custom Actions?
I've outgrown the Sql Server custom actions available in WiX, so I'm taking the bold step of creating my own using Deployment Tools Foundation. I want to be a good citizen and make sure that mine ...
0
votes
1answer
555 views
WiX custom action with DTF… quite confused
Okay, I have decided the only way I can do what I want to do with WiX (thanks to an old installer I didn't write that I now have to upgrade) is with some CUSTOM ACTIONS.
Basically, I need to back up ...
0
votes
1answer
606 views
DTF Custom Action reference in WiX not a valid WiX reference
I can build a managed custom action just fine using the DTF tools (I.E MakeSfxCA.exe)
My post build event command line looks like this:
"%WIX%SDK\MakeSfxCA.exe"
...
0
votes
1answer
506 views
DTF CustomAction to WiX
I'm using a DTF immediate custom action. The Custom Action takes minimum of 5 minutes to perform its operation. Until that in the progress dialog, only the progress text is visible. The progress bar ...
0
votes
1answer
312 views
WIX/DTF - Dialog with a list, edit field and add/remove buttons on it
Anybody knows a good source to get an idea how to create this kind of a dialog?
I'm well aware that I'll need to write some CA's for that but relatively new to WiX (used to work with InstallShield).
...