.inf 文件 AddRegistry 节标志含义 (HKR,,"UpperFilters",0x00010008,"upperfilt") 0x00010008 代表什么?
在 MSDN 安装筛选器驱动程序给出了一个示例文件(复制如下)。
在 [upperfilter_addreg]
部分中,有注册表行 HKR,,"UpperFilters",0x00010008,"upperfilt"
。
0x00010008
标志的含义是什么?
请注意,此文件用于安装上层过滤器驱动程序。
感谢微软提供的足智多谋的完整文档。
:
[DestinationDirs]
upperfilter_copyfiles = 12
[upperfilter_inst]
CopyFiles = upperfilter_copyfiles
AddReg = upperfilter_addreg
[upperfilter_copyfiles]
upperfilt.sys
[upperfilter_addreg]
; append this service to existing REG_MULTI_SZ list, if any
HKR,,"UpperFilters",0x00010008,"upperfilt"
[upperfilter_inst.Services]
AddService = upperfilt,,upperfilter_service
[upperfilter_service]
DisplayName = %upperfilter_ServiceDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\upperfilt.sys
:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 WDK 中的帮助。
应该
更多的是 AddReg 指令本身上方行的注释中提供的内容。
See the help in the WDK.
Should be
so more its what is supplied in the comment in the line above the AddReg directive itself.