Reputation: 1078
I'm having some minifilter drivers installed on my system. I want to find the version of minifilter driver which is installed. I tried fltmc
command to load/unload the drivers.
Is there any command to find the version of installed minifilter drivers on windows ?
Upvotes: 0
Views: 898
Reputation: 697
I suppose that the easiest solution to this problem is the following:
fltmc
,HKLM\SYSTEM\CurrentControlSet\services\<filter_name>
should do the job),If you mean the value of the Version
member of the FLT_REGISTRATION
structure, this field should always be filled with FLT_REGISTRATION_VERSION
.
Upvotes: 3