Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 559
name1000101010 Avatar asked Jul 29 '14 06:07

name1000101010


1 Answers

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.

like image 123
pablora Avatar answered Sep 25 '22 12:09

pablora