2

I'm trying to find out which dll file is causing my problems. I'm using Process Monitor. It lists the Operation RegOpenKey and an error "NAME NOT FOUND" for the result, but doesn't tell me what that name is. I looked at the column names I could add to the display, but none of them seemed like they would show me the name.

How do I determine the name of the file that RegOpenKey is working on?

Lance Roberts
  • 401
  • 3
  • 12
  • 29

1 Answers1

4

The value of Path is what is not found. enter image description here

longneck
  • 23,082
  • 4
  • 52
  • 86
  • Yeh, this does let me know what key is being accessed, though I still don't know up front what dll is being called. Thanks. – Lance Roberts Mar 19 '13 at 18:28