This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Want to access MSI property in a custom action in Roll back sequence
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 17, 2009
09:36 PM
Want to access MSI property in a custom action in Roll back sequence
Hi,
Is there any way I can get the MSI properties in a custom action in rollback sequence?
Aryan
Is there any way I can get the MSI properties in a custom action in rollback sequence?
Aryan
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 18, 2009
11:58 AM
Rollback custom actions can only access property information through the CustomActionData property (the same as deferred custom actions). To access property information, a property with the name of the rollback custom action would need to be set with all property values the rollback action needs.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 18, 2009
12:04 PM
joshstechnij wrote:
Rollback custom actions can only access property information through the CustomActionData property (the same as deferred custom actions). To access property information, a property with the name of the rollback custom action would need to be set with all property values the rollback action needs.
If I understand you correctly, if I am creating a custom action with name customAction_Rollback, then I need to create a property with name customAction_Rollback and its value will be sequence of properties I need, in some sequence separatd by some delimiter? Please let me know if I am wrong.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 18, 2009
12:09 PM
Yes, your description is correct for passing CustomActionData to the rollback action.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 18, 2009
12:11 PM
Thanks a lot. I shall give it try!!!