views:

154

answers:

1

I want to access \Registry\Machine\Software key from a driver. The driver is loaded prior to the registry key. Do I have to poll the key availability? Or there is something I can wait for?

+1  A: 

Why can't you use SYSTEM\CurrentControlSet\Services\YourDriver\Parameters ?

I'm sure this question has been asked on the OSR mailing list several times, you can probably find more info there, but AFAIK, there is no event you can wait for.

Anders
The problem is that I need \Registry\Machine\Software (I'm not using it for my own parameters). Thanks for your reply. I just wanted to be sure that there is no better way instead of polling.
Sergius