New Post: Project.Version Errors
Apparently this error is due to the MSI limitation (http://msdn.microsoft.com/en-us/library/aa370859%28v=VS.85%29.aspx). However it is clear that this limitation can be handled: I can clearly see that...
View ArticleNew Post: How to add items to the Windows start-menu after the Project...
If you want to put the shortcut to the start-menu and desktop then your code (using constructor) will look need to be like this:new Dir(@"%ProgramFiles%\My Company\My Product", new...
View ArticleNew Post: Use Wix# to install Windows Service
The "Wix# Samples\AllInOne" contains service registration for the steps for the services. Keep in mind that the service is expected to be self-registering one, which is a good practice anyway. To do...
View ArticleNew Post: How to add items to the Windows start-menu after the Project...
That got me going - thank you so very much!!
View ArticleNew Post: How to specify the specific installation directory
Hello, currently I am using Wix# to make a setup on Windows 8, but I found a issue. Here is my code segment. ... Dirs = new[] { new Dir(@"PortfolioSurveyor", new Files(@"Files\*")), new...
View ArticleNew Post: How to specify the specific installation directory
The Wix directory (Wix# Dir target path) doesn't allow absolute path. Thus it has to be done by overriding the INSTALLDIR property prior the installation: Project project = new Project("MyProduct", new...
View ArticleNew Post: How to specify the specific installation directory
The issue was fixed, thank you very much.
View ArticleNew Post: Wix Burn Project?
No Wix# is concentrating on authoring WiX setups only. However if you believe that building Burn packages can benefit from C# binding (as part of Wix#) please add the feature request and I will...
View ArticleNew Post: How to specify the specific installation directory
The Release v1.0.4.0 ( https://wixsharp.codeplex.com/releases/view/610843) has the feature implemented. Now you can just pas the absolute path in the constructor.
View ArticleNew Post: Use Wix# to install Windows Service
From the Release v1.0.4.0 (https://wixsharp.codeplex.com/releases/view/610843). Service installation is a "first class citizen". There are two code samples in the release downloadables.
View ArticleNew Post: How to specify the specific installation directory
Ok, it's very nice, thank you very much. 发自我的 Windows Phone发件人: [email removed]发送时间: 2015/1/19 14:43收件人: [email removed]主题: Re: How to specify the specific installation directory...
View ArticleNew Post: How to specify the specific installation directory
Hi Oleg, first of all I wnat to thank you for this great project! I really appreciate it. It is the long time missed piece of puzzle. I just installed version 1.0.4.0 and I tried the absolute paths....
View ArticleNew Post: How to specify the specific installation directory
Interesting thing is that if you proceed the installation will be made into the correct directory. Nevertheless it is the problem. Apparently setting INSTALLDIR property is not enough (I just learned...
View ArticleNew Post: How to specify the specific installation directory
Thank you, works great in 1.0.5.0!
View ArticleNew Post: Support for interfacing with Patch projects?
Is there support for interfacing with Patch projects? For example, say I wanted to add a new TargetImage and set its attributes, or adjust the PatchInformation and PatchMetadata, etc.
View ArticleNew Post: Admin Installs
Does Wix# provide a means of creating admin installs (msiexec /a)?
View ArticleNew Post: Support for interfacing with Patch projects?
No, Currently there is no support for Patch packages (I assume you are asking about .msp).
View ArticleNew Post: Admin Installs
You can execute any MSI with "msiexec /a" meaning that any MSI built with Wix# (or any other framework) can be installed as "admin install". Did I understand you question correctly?
View Article