我正在尝试编辑赛普拉斯控制器的 INF 文件,以包含 64 位操作系统和 32 位操作系统的更多信息。当前的 INF 文件如下,仅适用于 32 位,我想对其进行编辑以使其也适用于 64 位 Win7 操作系统。
[DestinationDirs]
USB.Files.Ext = 10,System32\Drivers ;10 = Windows Directory
[USB.Dev]
CopyFiles=USB.Files.Ext
AddReg=USB.AddReg
[USB.Dev.HW]
AddReg=USB.AddReg.Guid
[USB.Dev.NT]
CopyFiles=USB.Files.Ext
AddReg=USB.AddReg
[USB.Dev.NT.HW]
AddReg=USB.AddReg.Guid
[USB.Dev.NT.Services]
Addservice = USB, 0x00000002, USB.AddService
[USB.AddService]
DisplayName = %USB.SvcDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %10%\System32\Drivers\USB.sys
LoadOrderGroup = Base
[USB.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,USB.sys
[USB.Files.Ext]
USB.sys
[USB.AddReg.Guid]
;HKR,,DriverGUID,,%USB.GUID%
我对 INF 文件完全陌生,[USB.Dev]、[USB.Dev.NT] 等是什么意思?以及如何编辑此 INF 以包括 64 位 Win7 操作系统。请指导我完成。