New Post: How to implement IIS / Website in WIX#
Please can we have a sample to implement IIS / Website in WIX#.....
View ArticleNew Post: Upgrades out of order?
Works great, thanks! I still haven't figured out how to do UpgradeVersions = VersionRange.ThisAndOlder + VersionRange.ThisAndNewer (i.e. same code that will work for both upgrades and downgrades), but...
View ArticleNew Post: Upgrades out of order?
Actually VersionRange.NewerThanThis is not a magic constant but a predefined object, which you can define by yourself :) UpgradeVersions = new VersionRange { Minimum = "0.0.0.0", Maximum =...
View ArticleNew Post: How to implement IIS / Website in WIX#
The sample already exists. Have a look at <Wix# Samples>\IIS
View ArticleNew Post: Upgrades out of order?
Sweet it works! This is what I have done: VersionRange upgradeVersions = new VersionRange { Minimum = "0.0.0.0", Maximum = "99.99.99.99", IncludeMinimum = true, IncludeMaximum = true, }; VersionRange...
View ArticleNew Post: How to load BrowseDlg onClick of Browse Button and Load the...
How to load BrowseDlg onClick of Browse Button and Load the directory in textbox
View ArticleNew Post: How to Create App Pool with new credentials
How to Create App Pool with new credentials.
View ArticleNew Post: Remove INSTALLDIR on uninstall?
Anyone having any issues removing the INSTALLDIR on an uninstall? For some reason, this does not work for me. The files and subdirectories are removed but not the root INSTALLDIR directory. I've read...
View ArticleNew Post: How to load BrowseDlg onClick of Browse Button and Load the...
Finally got a solution : customUI.On(WebSettingForm, "IISWEB_PHYSICALPATH_BTN", new SetProperty("_BrowseProperty", "IIS_WEBSITEPHYSICALPATH"), new spawnDialog(CommonDialogs.BrowseDlg));
View ArticleNew Post: Remove INSTALLDIR on uninstall?
It appears that simply adding a registry value prevents the INSTALLDIR folder from being removed on an uninstall: RegValue savedValue = new RegValue(RegistryHive.LocalMachine, @"SOFTWARE\xxx", "My...
View ArticleNew Post: Remove INSTALLDIR on uninstall?
I'm able to confirm the above using the "Persisting AppInfo" Wix# example: the "C:\Program Files (x86)\My Company\My Product" directory does not get removed on uninstall when the NativeSetup() method...
View ArticleNew Post: Support for ComponentGroup
The sample I referred to does not use VIRTUALDIR. What exactly seems to be a problem?
View ArticleNew Post: Support for ComponentGroup
This is the code im using. Dirs = new[] { new Dir(new Id("IIS_WEBSITEPHYSICALPATH"), @"%ProgramFiles%\" + productName + "_" +productVersion +"_Web", new Files(@"..\OutFiles\WebPublish\*.*"), new...
View ArticleNew Post: Remove INSTALLDIR on uninstall?
This one deserves a special explanation. MSI/WiX has this ridiculous limitation "Directory/File-less setup is impossible ". Thus Wix# defines a dummy empty directory that is removed immediately after...
View ArticleNew Post: Support for ComponentGroup
Yes this is what I would expect. I see that you set Name = productName + "_Web_VDIR" so it becomes the ID and Alias of that value. Thus it emits the following XML (for ProductName="Test"):...
View ArticleNew Post: How to load BrowseDlg onClick of Browse Button and Load the...
Great. I actually couldn't understand initially what scenario you are dealing with. It looks like it is CustomCLRDialog. Am I right? Though I have a few further questions: Didn't you have to use square...
View Article