New Post: set property from dialog
I created a project from WinSharp Managed Setup - Custom Dialog template On custom dialog user should choose a parent web site in combo box. Also I have a property IISWEBSITE_NAME. How to set this...
View ArticleNew Post: set property from dialog
In your UI element event handler call: MsiRuntime.Session[<prop_name>] = <prop_value>;
View ArticleNew Post: Installing to %PersonalFileFolders%
I am creating a MSI file that installs the program (ProgramFiles (x86)), data files (ProgramData), and files in %PersonalFolder% (MyDocuments\user\App folder). Everything installs ok, but I get an...
View ArticleNew Post: Installing to %PersonalFileFolders%
It is one of those annoying "ICE validations", which sometimes have no practical value whatsoever. You can managed it by disabling ICE validation via Light.exe command line arguments. Providing the...
View ArticleNew Post: Application and Application Pool doesn't delete on uninstallation
my installer create web application under some parent web site, create apppool for this application."First version" of my installer was made not from template and on uninstallation it removed files,...
View ArticleNew Post: Application and Application Pool doesn't delete on uninstallation
Managed Setup (ManagedProject) has nothing to do with the deployment logic. Managed Setup only controls the integration of the MSI and GUI. Whereas the deployment algorithm is fully controlled by MSI....
View ArticleNew Post: How to implement Instances with Wix#?
I need to install more than 1 instances of application
View ArticleNew Post: How can I add attributes to a Dir?
I've run into a scenario where I need to add some custom attributes to some of my Dir objects. I looked over the Custom Attributes sample, and I've come up with this code:Dir someDir = new...
View ArticleNew Post: How can I add attributes to a Dir?
It is a defect. I have logged it Issue#55 The fix (Changeset#850675c7726b) is committed and will be available with the next release. Though you can start using it right away if you download the...
View ArticleNew Post: How to implement Instances with Wix#?
Search WixSharp Wiki for "instances". The answer is there.
View ArticleNew Post: Installing to %PersonalFileFolders%
Thank you. I set this up and see the details provided in the WIX file. But still vague on how to proceed.Are there any Samples that add a second directory? I could not find one.I add a...
View ArticleNew Post: Installing to %PersonalFileFolders%
Why don't you create a simple "Hello World" Wix# script demonstrating the problem and share it with me. This way I can see the problem by myself instead of relying on the problem description.
View ArticleNew Post: Installing to %PersonalFileFolders%
Good Idea. I created one here to look at myself. I will clean it up and send it to you.Robert Race, PERace Engineering Assoc4851 Four Seasons CtEagan, MN 55122t: 612.670.7009e: [email removed]
View ArticleNew Post: Installing to %PersonalFileFolders%
Here us a simple install that shows all the errors I receive when installing another directory.Let me know how I can compensate you for your time. This has been a great help.Robert Race, PERace...
View ArticleNew Post: How can I add attributes to a Dir?
Ok, thank you. Would this bug effect the adding of environment variables as well? I'm attempting the following with similar results:project.AddEnvironmentVariabl(new EnvironmentVariable("someVar",...
View ArticleNew Post: Installing to %PersonalFileFolders%
The sample didn't get attached. May be it is a good idea to share it via Dropbox or an similar? Alternatively you can find Wix# support email here so you can just send an ordinary email with...
View ArticleNew Post: Installing to %PersonalFileFolders%
Because I had an exe file included in the ZIP, I think it was being rejected. It was even rejected through the wix# account.https://app.box.com/s/u34z7n6r6kgmx1sd5otcayl0mxuo7fctThis BOX account should...
View ArticleNew Post: How can I add attributes to a Dir?
Could you elaborate? project.AddEnvironmentVariabl(new EnvironmentVariable("someVar", "Some value") { AttributesDefinition = "DiskId=2"...
View ArticleNew Post: Installing to %PersonalFileFolders%
The problem is caused by that silly MSI requirement: "you must define UserProfile registry value if you install in the UserProfile folder". This nonsense is normally handled by Wix# sharp by injecting...
View ArticleNew Post: Installing to %PersonalFileFolders%
Thank you, that makes sense.I injected the fix in my sample code and I seem to be missing something.using System;using System.Linq;using System.Xml;using System.Xml.Linq;using WixSharp;using...
View Article