I want to show my custom windows form on uninstall. I am going to use a C# custom action for this. How do I make the custom action wait till the user clicks OK 开发者_开发技巧or Cancel? I want my cust
I\'m following a number of different tutorials in an attempt to make a generic IIS WIX installer which I can then split up as 开发者_JAVA百科appropriate into different libraries.
After which custom action should my C#开发者_如何学Go custom actions execute? And what condition should I use so my custom action could run only on uninstall?
I have a custom action which should be run on uninstall. But for unknown reason the msiexec says \"There is a problem with this Windows Installer package. A DLL required for this install to complete c
In my WiX install package I define a property, then define a textbox that uses this property, then pass this property to my custom action. But inside of the custom action I find out that the property
I pass property values like this: p开发者_如何转开发roperty1=value1;property2=value2 but sometimes values contain \';\' symbols, which causes WiX to deserialize the property string incorrectly. I\'
I have a problem with setting data that contains semicolons to CustomActionData property. By default CustomActionData class uses semic开发者_C百科olon as DataSeparator and it breaks my data, when it c
I am trying to write a custom actions class library for my WiX install package. I\'ve read that I should use CustomActionAttribute to mark the methods that I am planning to call from install package.
Can I use CustomActionAttribute in classes that inherit from System.Configuration.Install.开发者_运维百科Installer? I want my class library to support both WiX and Visual Studio setup project.I don\'t
I have an installer that needs to access the registry and copy and remove files using custom actions.