I am a beginner, started learning wix. I want to capture and validate and register user details during the installation process. I have created a dialog to capture user registration and invoking a custom action once user clicks on 'Next'. But here I am getting Installer Error: 2762. Though the error description says that "The action must be scheduled between InstallInitialize and InstallFinalize", I am not able to figure out how to resolve this problem.

Here is my XML script

<CustomAction Id="myCustomValidate" BinaryKey="mycustom" DllEntry="ValidateCustomAction" Execute="deferred" Return="check">
</CustomAction>

 <UI>
        <UIRef Id="WixUI_Mondo" />            
        <Dialog Id="UserRegistrationDlg" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
            ..
            ..
            ..
            <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="[ButtonText_Next]">
                <Publish Event="ValidateProductID" Value="0">1</Publish>                
                <Publish Event="DoAction" Value="myCustomValidate">1</Publish>
                <Publish Event="SpawnDialog" Value="InvalidRegDlg">PIDACCEPTED = "0"</Publish>                  
                <Publish Event="NewDialog" Value="SetupTypeDlg">ProductID AND PIDACCEPTED = "1"</Publish>
            </Control>              
        </Dialog>
</UI>

Following is the custom action code I used.

 [CustomAction]
    public static ActionResult ValidateCustomAction(Session session)        
    {
          return ActionResult.Success;
    }

Custom action is working fine if used in "InstallExecuteSequence". Not able to figure out the problem, I removed the custom dialog and used the following simple call to invoke custom action. But ended up with the same error.

<Publish Dialog="LicenseAgreementDlg" Control="Next" Event="DoAction" Value="myCustomValidate">1</Publish>

I am sure I am doing something silly here, but couldn't figure out. I will really appreciate any help on this.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

In your CustomAction element set Execute attribute to immediate. Deferred actions can run only in InstallExecuteSequence between InstallInitialize and InstallFinalize actions.

link|improve this answer
Worked like charm. Thank you!!! – user961330 Dec 21 '11 at 15:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.