176
|
1 |
-*- outline -*-
|
|
2 |
|
|
3 |
* Which version exist?
|
|
4 |
|
|
5 |
- VxD
|
|
6 |
Windows 3.x and Windows 9x
|
|
7 |
- Windows Driver Model (WDM)
|
|
8 |
Windows 98, Windows 98 Second Edition, Windows Me, Windows
|
|
9 |
2000, Windows XP, Windows Server 2003 and Windows Vista (for
|
|
10 |
backwards compatibility)
|
|
11 |
- Windows Driver Foundation (WDF)
|
|
12 |
Windows 2000 and later
|
|
13 |
|
|
14 |
* VxD.
|
|
15 |
|
|
16 |
See
|
|
17 |
|
|
18 |
http://en.wikipedia.org/wiki/VxD
|
|
19 |
|
|
20 |
* WDM.
|
|
21 |
|
|
22 |
See
|
|
23 |
|
|
24 |
http://en.wikipedia.org/wiki/Windows_Driver_Model
|
|
25 |
|
|
26 |
* WDF.
|
|
27 |
|
|
28 |
See
|
|
29 |
|
|
30 |
http://en.wikipedia.org/wiki/Windows_Driver_Foundation
|
|
31 |
|
|
32 |
* Filename extension.
|
|
33 |
|
|
34 |
* VxD
|
|
35 |
.386 under Windows 3.x
|
|
36 |
.vxd under Windows 95
|
|
37 |
|
|
38 |
* Tools.
|
|
39 |
|
183
|
40 |
** Msinfo32.exe
|
|
41 |
|
|
42 |
Windows XP/2003 System Information Tool.
|
|
43 |
|
|
44 |
See
|
|
45 |
|
|
46 |
http://support.microsoft.com/kb/308549
|
|
47 |
|
176
|
48 |
** Microsoft DDK.
|
|
49 |
|
|
50 |
*** DevCon.
|
|
51 |
|
|
52 |
Supported device classes:
|
|
53 |
|
|
54 |
cmd> devcon.exe classes
|
|
55 |
|
|
56 |
Which files used by specific driver (with "*" prints list of files for all drivers):
|
|
57 |
|
|
58 |
cmd> devcon.exe driverfiles *
|
|
59 |
|
|
60 |
Device ID (names included):
|
|
61 |
|
|
62 |
cmd> devcon.exe hwids *
|
|
63 |
|
|
64 |
Device status (running/stoped):
|
|
65 |
|
|
66 |
cmd> devcon.exe status *
|
|
67 |
|
|
68 |
** USB Command Verifier.
|
|
69 |
|
|
70 |
All USB peripherals are required to pass the Device Framework tests in order
|
|
71 |
to gain certification.
|
|
72 |
|
|
73 |
http://www.usb.org/developers/tools/
|
|
74 |
|
|
75 |
* Files.
|
|
76 |
|
|
77 |
** Windows 98 SE/ME.
|
|
78 |
|
|
79 |
** Windows NT (2000/XP/2003).
|
|
80 |
|
|
81 |
* .inf
|
|
82 |
Stored in %Windir%\Inf.
|
|
83 |
* .pnf
|
|
84 |
Precompiled INF File. Stored in %Windir%\Inf.
|
|
85 |
|
|
86 |
* Driver type.
|
|
87 |
|
|
88 |
** CDC.
|
|
89 |
|
|
90 |
http://support.microsoft.com/kb/837637
|
|
91 |
How to use or to reference the Usbser.sys driver from
|
|
92 |
universal serial bus (USB) modem .inf files.
|
|
93 |
|
|
94 |
* Driver class.
|
|
95 |
|
|
96 |
See
|
|
97 |
|
|
98 |
http://msdn.microsoft.com/en-us/library/ms791134.aspx
|
|
99 |
System-Supplied Device Setup Classes
|