|
Hooking WMI (.NET Application)
Hello!
I have a .NET application which uses WMI to query the "Win32_Processor" class:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa394373(v=vs.85).aspx
I want to hook the function call and modify the string returned in "ProcessorId".
How would you do that, when working with a .NET application?
I would prefer a "high level" general solution (e.g. a Loader) which also works for future versions of the software, instead of modifying the application directly.
|