Click here to Skip to main content
Licence CPOL
First Posted 18 Sep 2008
Views 11,656
Downloads 58
Bookmarked 4 times

MSI Custom Action Decoder

By joaquinjares | 18 Sep 2008
A simple tool to encode the custom action's type column in MSI databases

1
1 vote, 50.0%
2

3
1 vote, 50.0%
4

5
2.67/5 - 2 votes
μ 2.67, σa 2.47 [?]

Introduction

Encoding a Custom Action Type field is relatively simple. You just need to use the different values as flags, and use that as a number. Decoding is a completely different matter. There are several conflicting rules, and various flags have the same value. To make matters more complex, the msidbCustomActionTypeBinaryData flag has a value of 0, making it impossible to use as a flag. In this very simple project, I have encoded the rules to decode.

Background

Before reading this article, you should have a good grasp on what an MSI database is, and how to edit it using Orca. You will not be doing that with this program, but not being able to do that renders the contents of this article somewhat useless.

Using the Code

The rules for encoding are very simple, and they are as follows:

Action Types with values lower than 7 imply the use of msidbCustomActionTypeBinaryData. All others are not using it.

If msidbCustomActionTypeInScript is present, the values 0x100 and 0x200 are msidbCustomActionTypeRollback and msidbCustomActionTypeCommit. If it's not present, those values represent msidbCustomActionTypeFirstSequence and msidbCustomActionTypeOncePerProcess. Also, the value msidbCustomActionTypeClientRepeat should never be selected at the same time as msidbCustomActionTypeInScript.

The first 7 values are exclusive. That is, an action may be msidbCustomActionTypeDll, msidbCustomActionTypeExe, msidbCustomActionTypeTextData, msidbCustomActionTypeJScript, msidbCustomActionTypeVBScript or msidbCustomActionTypeInstall but none of them at the same time. This basically amounts to values 1 through 7 not being flags, but textual values.

Points of Interest

The Type column was obviously grown organically, and as such it doesn't make sense as a true flag. This makes sense historically, but it makes decoding much more difficult than what it should be. I hope my little program helps with that confusion.

History

  • 18th September, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

joaquinjares

Software Developer (Senior)
Independent
Argentina Argentina

Member
I have been working as a developer for 15 years now, starting with gwbasic, moving to C and VB and then to VB.Net and later C#. I've used many languages, as languages is what I really like.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralGreat Tool PinmemberGord Smith5:45 15 Apr '09  
GeneralRe: Great Tool Pinmemberjoaquinjares5:55 15 Apr '09  
Yep, I agree. I didn't do it because I didn't want to code all the rules for checkboxes. For instance, the first 7 can't be checked at the same time (only one of them) and I didn't decide on what would happen if you try (the check changes, is disabled, shows an error, etc). Also, there are rules I still don't understand for encoding, although I think I have all the math correctly for decoding. I'll try it anyway...
 
J

GeneralRe: Great Tool PinmemberGord Smith12:01 15 Apr '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120210.1 | Last Updated 18 Sep 2008
Article Copyright 2008 by joaquinjares
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid