I used the RegistryMonitor-Wrapper to create an application that notifies the user when a Subkey is added to a specific Regsitrykey. Now I want my application to tell the user which process created that Subkey.
Is that possible?
I used the RegistryMonitor-Wrapper to create an application that notifies the user when a Subkey is added to a specific Regsitrykey. Now I want my application to tell the user which process created that Subkey.
Is that possible?
It is possible to monitor registry access as it happens, that's what e.g. ProcMon from Sysinternals is doing (https://learn.microsoft.com/en-us/sysinternals/downloads/procmon). For some information on how that might work, see e.g. https://stackoverflow.com/a/4835195/9272280
If you are asking whether it's possible to find out after the fact, which process created a given subkey: I believe the answer to that would be no.