name1000101010
name1000101010

Reputation: 131

What does the RegSetInfoKey operation do?

The deatil tab associated with the operation says:

KeySetInformationClass: KeySetHandleTagsInformation, Length: 0 

I'm using Process Monitor (ProcMon) to monitor the Registry changes an installer makes and I cannot find an explanation for what this operation does.

Upvotes: 13

Views: 9381

Answers (1)

pablora
pablora

Reputation: 546

Maybe is the same question that was asked here in Reddit (https://www.reddit.com/r/learnprogramming/comments/2c0w1f/registrywhat_does_regsetinfokey_do/).

I bumped with the same issue than you did and came out with that response. Based on the documentation (https://msdn.microsoft.com/en-us/library/ff553399(v=vs.85).aspx) and the actual behaviour I see in the binary it looks like it checking a registry key value.

Upvotes: 2

Related Questions