[WiX-users] ConfirmCancelMessage can not localized

2015-03-11 Thread Mrugesh Patel
Hello, In Burn, all string are localized and work fine excluding “ConfirmCancelMessage”. This string display when click on cancel button in burn. I can not find this in Theme.xml. I already applied localization in Theme.wxl file. May be I am wrong in some where. Can you please help me? Thanks

Re: [WiX-users] Reboots

2015-03-11 Thread Ivanoff, Alex
MsiSetMode does not seem to work when called from deferred custom action. So, my question should have been "How do I tell Windows Installer from deferred custom action written in C that reboot is required?" -Original Message- From: Phil Wilson [mailto:phildgwil...@gmail.com] Sent: Wedn

Re: [WiX-users] After add reference WixNetFxExtension.dll to Setup Project, build failed‏

2015-03-11 Thread XuFei
Hi Sean:Thank you for your reply. Actually my issue is not that, just simple reference the WixNetExtension.dll to Setup Project do nothing else, then build will fail, BTW I use VS 2013. if you want I can mail you a sample. > Date: Wed, 11 Mar 2015 13:54:23 -0500 > From: r.sean.h...@gmail.com > T

Re: [WiX-users] Reboots

2015-03-11 Thread Ivanoff, Alex
Also, ReplacedInUseFiles property was not set, instead MsiRebootActionScheduled was set to 3. I cannot find any documentation on MsiRebootActionScheduled, should it be used? -Original Message- From: Phil Wilson [mailto:phildgwil...@gmail.com] Sent: Wednesday, March 11, 2015 12:18 To: G

Re: [WiX-users] After add reference WixNetFxExtension.dll to Setup Project, build failed‏

2015-03-11 Thread Sean Hall
The WIX_IS_NETFRAMEWORK_451_OR_LATER_INSTALLED property was just merged into v4 yesterday, it's not in that build. There seems to be another issue here that it's complaining about WIX_IS_NETFRAMEWORK_451_OR_LATER_INSTALLED, though. On Wed, Mar 11, 2015 at 11:56 AM, XuFei wrote: > I'm in use wix

[WiX-users] After add reference WixNetFxExtension.dll to Setup Project, build failed‏

2015-03-11 Thread XuFei
I'm in use wixtoolset v4.0.2603.0After add reference WixNetFxExtension.dll to Setup Project, Build failed:Cannot find the table definitions for the 'WixMbaPrereqInformation' table. This is likely due to a typing error or missing extension. Please ensure all the necessary extensions are supplie

[WiX-users] (WiX) Write product info to registry for dual purpose installer

2015-03-11 Thread Egger, Jerome
Hello, I'm making a dual purpose package in WiX according to this article. When I initialize my Installer with MSIINSTALLPERUSER="1", the product information is always written to HKEY_CURRENT_USER, even when I set

Re: [WiX-users] Create file share with ready permissions for everyone

2015-03-11 Thread Phill Hogland
> >Description='FileShare for Workwise backend'> > User="WorkwiseUsers" /> > > And that creates the folder and the file share, but only gives permissions > to the Workwise user. The User parameter is mandatory when creating the > FileSharePermission. How can I create the

Re: [WiX-users] Create file share with ready permissions for everyone

2015-03-11 Thread John Cooper
+1. I like this approach. >From a security point of view, I would prefer a Local Group instead of >Everyone. Use the local group string in place of "Everyone", and then add >share users to the Local Group. The converse of adding is that is allows you >to also remove users (and access) very e

[WiX-users] Cumulative patching with Wix

2015-03-11 Thread Jani C Oinonen
Hi there, i've finally managed to create a UAC patch from 1.0 to 1.1. This is what i do: * admininstall msiexec /a old\setuptarget.msi /quiet TARGETDIR=\patch\oldout msiexec /a latest\setupupdate.msi /quiet TARGETDIR=\patch\latestout * create diff file torch -ax \oldout -p -xo \oldout\setuptarg

Re: [WiX-users] Create file share with ready permissions for everyone

2015-03-11 Thread Jeremiahf
Sorry, "cmd /c net share sharename=drive:\folder /grant:everyone,READ" On Wed, Mar 11, 2015 at 5:41 AM, Jeremiahf wrote: > Off the top of my head. You could use a CA that calls "cmd /c net share > drive:\folder /grant:everyone,READ" > > On Tue, Mar 10, 2015 at 5:00 PM, Federico Provera > wrot

Re: [WiX-users] Create file share with ready permissions for everyone

2015-03-11 Thread Jeremiahf
Off the top of my head. You could use a CA that calls "cmd /c net share drive:\folder /grant:everyone,READ" On Tue, Mar 10, 2015 at 5:00 PM, Federico Provera wrote: > Using the WiX Toolset I want to create a folder and then create a file > share for that folder so that every user has reading pe