Re: [WiX-users] DTF managed custom action - temporary file

2013-11-27 Thread Rob Mensching
: Jens Teutenberg [mailto:jens.teutenb...@t-online.de] Sent: Tuesday, November 26, 2013 10:48 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] DTF managed custom action - temporary file I want to use a temporary file to transfer data between my immediate custom action and my deferred

[WiX-users] DTF managed custom action - temporary file

2013-11-26 Thread Jens Teutenberg
I want to use a temporary file to transfer data between my immediate custom action and my deferred custom action (Impersonate=no). I use the method “Path.GetTempFileName()” to create a unique file in the immediate CA. The file will be created but the deferred CA cannot see this file. Where I

Re: [WiX-users] DTF managed custom action - temporary file

2013-11-26 Thread Phil Wilson
If the users are different so is the temp location. The immediate CA gets the user's temp path, the system account (no impersonation) uses the system's temp path. As long as you create the file where both have access, perhaps you could put the actual path to it in the registry. Phil Wilson On

Re: [WiX-users] DTF managed custom action - temporary file

2013-11-26 Thread Christopher Painter
-users] DTF managed custom action - temporary file I want to use a temporary file to transfer data between my immediate custom action and my deferred custom action (Impersonate=no). I use the method Path.GetTempFileName() to create a unique file in the immediate CA. The file will be created

Re: [WiX-users] DTF managed custom action - temporary file

2013-11-26 Thread Blair Murri
: phildgwil...@gmail.com To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] DTF managed custom action - temporary file If the users are different so is the temp location. The immediate CA gets the user's temp path, the system account (no impersonation) uses the system's temp path. As long

Re: [WiX-users] DTF managed custom action - temporary file

2013-11-26 Thread Blair Murri
property were it is safe. -Blair From: chr...@iswix.com To: wix-users@lists.sourceforge.net; wix-users@lists.sourceforge.net Date: Tue, 26 Nov 2013 11:17:05 -0800 Subject: Re: [WiX-users] DTF managed custom action - temporary file Here's another approach to consider: http