I am paasing MSI property to my custom action DLL which is a differed execution custom action, but it is always blank…
i am not getting the reason…
how can i solve this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Deferred custom actions do not have access to public properties, except a couple of special ones, like “CustomActionData”.
You can use an immediate custom action to set special property “CustomActionData” with the value of your property, and then from your deferred custom action read the value of “CustomActionData” instead of your property.