7

Something somewhere is modifying a value in a registry key, and I want to track it down.

I thought I might set up ProcMon to watch that value, but as far as I can tell, it only filters to keys. There is far too much noise for me at that level.

Jay Bazuzi
  • 4,210

1 Answers1

7

All you need to do is filter on the RegSetValue operation as well as filtering the Path to match the registry key you want to monitor.

enter image description here

Mike
  • 171