Read from Registry in a windows 10 minifilter driver

238 Views Asked by At

I'm working on a windows 10 filesystem mini filter driver and I want to read from the registry. Unfortunately, I'm new to c and driver development. My question is how do I receive the key value from the PKEY_VALUE_FULL_INFORMATION structure. (using the ZwOpenKey and ZwQueryValueKey routines). In the msdn doc for this structure, I didn't understand how to use the DataOffset property. Also I didn't understand why it says the Name is a string of unicode characters when its declared as WCHAR Name[1];.

0

There are 0 best solutions below