-
Notifications
You must be signed in to change notification settings - Fork 2
/
notecard-driver-windows7.inf
74 lines (56 loc) · 1.73 KB
/
notecard-driver-windows7.inf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
;---------------------------------------------------------------------------------
;Generic serial port driver for Windows versions prior to Windows 10
;---------------------------------------------------------------------------------
[Version]
Signature="$Windows NT$"
Class=Ports
;Standard Windows serial/parallel port class
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME%
CatalogFile=%MFGFILENAME%.cat
DriverVer=12/06/2012,5.1.2600.7
[Manufacturer]
%MFGNAME%=DeviceList,NTamd64
[DeviceList]
%DESCRIPTION%=DriverInstall,USB\VID_30A4&PID_0001
[DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall,USB\VID_30A4&PID_0001
[DriverInstall.nt]
include=mdmcpq.inf
CopyFiles=FakeModemCopyFileSection
AddReg=DriverInstall.nt.AddReg
[DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NT.Services]
include=mdmcpq.inf
AddService=usbser, 0x00000002, LowerFilter_Service_Inst
[DriverInstall.NTamd64]
include=mdmcpq.inf
CopyFiles=FakeModemCopyFileSection
AddReg=DriverInstall.NTamd64.AddReg
[DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services]
include=mdmcpq.inf
AddService=usbser, 0x00000002, LowerFilter_Service_Inst
[DestinationDirs]
DefaultDestDir=12
[SourceDisksNames]
[SourceDisksFiles]
[FakeModemCopyFileSection]
[LowerFilter_Service_Inst]
DisplayName= %SERVICE%
ServiceType= 1
StartType = 3
ErrorControl = 0
ServiceBinary = %12%\usbser.sys
[Strings]
MFGFILENAME="notecard"
DRIVERFILENAME ="usbser"
MFGNAME="Blues Wireless"
DESCRIPTION="Notecard"
SERVICE="USB Driver"