New Post: Using WixIIsExtension and localization variable errors on building...
It is strange. The WiX documentation describes it as: Languages String The list of language IDs (LCIDs) supported in the package. So it is expected to be a list. But if it works for you,... then it is...
View ArticleNew Post: util:EventSource
Hi there, No there is no direct equivalent for this. Though you can still embed this functionality into your setup. You can add it directly into your setup definition as a raw XML fragment, WixFragment...
View ArticleNew Post: util:EventSource
My bad... While my post above is absolutely correct I completely forgot another, much better approach. You can use a IGenericEntity interface that dramatically simplifies adding support for simple...
View ArticleNew Post: util:EventSource
Thx Oleg for your very good support. Always appreciated! Regards Martin
View ArticleNew Post: IIS Virtual App inner folders duplication
Sorry, I didn't catch your post earlier. The easiest way to fixed undesired ID allocation is to use explicit IDs. Though in your case it is problematic as WebApplication element mapped indirectly. Thus...
View ArticleNew Post: IIS Virtual App inner folders duplication
thanks a ton oleg_s I was giving up on Wix# and about to do it in WIX only. But let's give it a try again , i'll rather comfortable writing lambda expressions instead of pure xml :P Also thanks for...
View ArticleNew Post: Bootstrapper exe file and multiple launch
Hello, why, when i click a second (or third, fourth,...) time on the EXE file generated with burn.exe (i use silentbootstrapper) and I have already installed the application (with same GUID), all files...
View ArticleNew Post: Injecting dialog is shown incorrectly
Hello, Oleg! I do msi installer with standart UI. project.InjectClrDialog injects custom dialog into standart dialog sequence. project.InstallScope = InstallScope.perMachine; Then I embedded the msi...
View ArticleNew Post: Sequence InstallUISequence in Win XP
Hello, i have problem with using Sequence.InstallUISequence parameter in ManagedAction method. When the parameter is not used, installer starts ok. When use it, thus immediately ending with error and...
View ArticleNew Post: Sequence InstallUISequence in Win XP
Hi Vojtech, Managed actions do require presence of .NET and indeed it can be a problem on legacy systems like WinXP. There are a few thing that you can do to address that. You can either:Set up...
View ArticleNew Post: Bootstrapper exe file and multiple launch
> Ideally, i want let to user know that the application (from bundle msi file) is already installed and he has to uninstall it first. Is it possible? Then you should not be using silent bootstrapper...
View ArticleNew Post: Injecting dialog is shown incorrectly
Thank you I wasn't aware about know this one. Injected C LR dialog needs to position and resize itself properly on the screen just where the native MSI UI dialog was before proceeding to the CLR dialog...
View ArticleNew Post: Bootstrapper exe file and multiple launch
Hi Oleg, thanks a lot for your quick answer. Thats what i am looking for and it seems to work fine :-) Thank you.
View ArticleNew Post: Bootstrapper exe file and multiple launch
Hi again, Maybe one more question :-). What localization and bootstrapper UI labels? Can I insert some translated xml to bootstrapper? For example like this:bootstrapper.Language = "cs-CZ";...
View ArticleNew Post: Bootstrapper exe file and multiple launch
Hi Vojtech,> ...it only removes Application from list of Add/Remove programs... I haven't observed this behavior before. I suggest you test it again but with the default WiX bootstrapper UI...
View ArticleNew Post: Driver installation with INF and CAT files
First, thanks for the great library. WiX has way to steep a learning curve so this is just what I needed to help create MSI files. I'm having trouble understanding how to install drivers that use INF...
View ArticleNew Post: Dynamic ManagedActions
I'm using WixSharp to build a generic MSI builder that I can reuse for my different software packages by just changing some inputs. I'd like to be able to dynamically define the registry value that...
View ArticleNew Post: Dynamic ManagedActions
MSI is a static creature so you cannot change the CA at runtime but you can dynamically update the MSI property that is a subject of the condition associated with the action so the action will or will...
View ArticleNew Post: Driver installation with INF and CAT files
Hi there, Wix# is trying to get away from the concept of installation Component as it's hard to find today a valid use-case when the deployment requirements force user/developer to deal with the...
View ArticleNew Post: Dynamic ManagedActions
Thanks Oleg. I switched over to ManagedProject and things are working the way I want them to.
View Article