I found that to get data from CustomActionData property I need to set
propetry which named same as a CA:
But I steel cannot mo
Any idea's? Any examples?
--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Executing-CA-after-InstallFiles-tp6076921p6088101.html
Sent from the wix-users mailing list archive at Nabble.com.
extern "C" UINT __stdcall BoxUpdate(MSIHANDLE hInstall)
{
TCHAR szPath[500], szStr[1000], szBoxAddresses[1000], szBox[NI_MAXHOST];
DWORD dwLen;
if (MsiGetMode(hInstall, MSIRUNMODE_SCHEDULED) == FALSE)
{
MsiSetProperty(hInstall, L"CustomAc
I see. I need to use deferred custom action. As I understand, I cannot access
to installation in deferred CA, only several propperties like
"CustomActionData". But I cannot get it's value.
...
if (MsiGetMode(hInstall, MSIRUNMODE_SCHEDULED) == TRUE)
{
TCHAR szPath[500];
UINT
Make your CA deferred (Execute="deferred")
-- Yan
On Tue, Mar 1, 2011 at 1:47 PM, vunder wrote:
> I'm trying to execute CA after InstallFiles (I want to execute it after
> files
> are copied):
>
>
> DllEntry="BoxUpdate"/>
>
>
"AdditionsDLL"
DllEntry="BoxUpdate" Execute="deferred"/>
-Original Message-
From: vunder [mailto:vun...@bk.ru]
Sent: Tuesday, March 01, 2011 5:47 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Executing CA after InstallFiles
I'm trying to ex
The customaction needs Execute="deferred" or it will execute while the script
is being generated.
-Original Message-
From: vunder [mailto:vun...@bk.ru]
Sent: 01 March 2011 11:47
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Executing CA after InstallFiles
I
I'm trying to execute CA after InstallFiles (I want to execute it after files
are copied):
-1) AND NOT
9 matches
Mail list logo