author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Tue, 09 Feb 2010 10:41:47 +0200 | |
changeset 303 | ff23efaf6857 |
parent 301 | 072d4cc9d726 |
child 450 | 4718697074d9 |
permissions | -rw-r--r-- |
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 |
* Tools. |
|
33 |
||
183 | 34 |
** Msinfo32.exe |
35 |
||
36 |
Windows XP/2003 System Information Tool. |
|
37 |
||
38 |
See |
|
39 |
||
40 |
http://support.microsoft.com/kb/308549 |
|
41 |
||
184
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
42 |
** Sysinternals. |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
43 |
|
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
44 |
*** WinObj. |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
45 |
|
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
46 |
Winobj is a program that lets you browse the Windows NT Object Manager |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
47 |
namespace. |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
48 |
|
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
49 |
** devtree. |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
50 |
|
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
51 |
The DeviceTree V2.12 utility is a Windows XP/Server 2003 utility written by |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
52 |
OSR, that allows the user the ability to display the drivers and devices |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
53 |
loaded in 2 different views. The first view Driver View the user sees a list |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
54 |
of all the drivers loaded in kernel mode and all the devices that those |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
55 |
drivers have created. In the second view PnP View the user sees a list of all |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
56 |
the devices in the system from that of Plug and Play Manager (PnP). |
380c761db215
About WinObj and devtree.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
183
diff
changeset
|
57 |
|
176 | 58 |
** Microsoft DDK. |
59 |
||
60 |
*** DevCon. |
|
61 |
||
62 |
Supported device classes: |
|
63 |
||
64 |
cmd> devcon.exe classes |
|
65 |
||
66 |
Which files used by specific driver (with "*" prints list of files for all drivers): |
|
67 |
||
68 |
cmd> devcon.exe driverfiles * |
|
69 |
||
70 |
Device ID (names included): |
|
71 |
||
72 |
cmd> devcon.exe hwids * |
|
73 |
||
74 |
Device status (running/stoped): |
|
75 |
||
76 |
cmd> devcon.exe status * |
|
77 |
||
78 |
** USB Command Verifier. |
|
79 |
||
80 |
All USB peripherals are required to pass the Device Framework tests in order |
|
81 |
to gain certification. |
|
82 |
||
83 |
http://www.usb.org/developers/tools/ |
|
84 |
||
85 |
* Files. |
|
86 |
||
87 |
** Windows 98 SE/ME. |
|
88 |
||
284
b21079a6bc2b
Files for windows driver.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
184
diff
changeset
|
89 |
* .386 |
b21079a6bc2b
Files for windows driver.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
184
diff
changeset
|
90 |
VxD driver under Windows 3.x |
b21079a6bc2b
Files for windows driver.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
184
diff
changeset
|
91 |
* .vxd |
b21079a6bc2b
Files for windows driver.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
184
diff
changeset
|
92 |
VxD driver under Windows 95 |
b21079a6bc2b
Files for windows driver.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
184
diff
changeset
|
93 |
|
176 | 94 |
** Windows NT (2000/XP/2003). |
95 |
||
96 |
* .inf |
|
97 |
Stored in %Windir%\Inf. |
|
98 |
* .pnf |
|
99 |
Precompiled INF File. Stored in %Windir%\Inf. |
|
100 |
||
101 |
* Driver type. |
|
102 |
||
103 |
** CDC. |
|
104 |
||
105 |
http://support.microsoft.com/kb/837637 |
|
106 |
How to use or to reference the Usbser.sys driver from |
|
107 |
universal serial bus (USB) modem .inf files. |
|
108 |
||
109 |
* Driver class. |
|
110 |
||
111 |
See |
|
112 |
||
113 |
http://msdn.microsoft.com/en-us/library/ms791134.aspx |
|
114 |
System-Supplied Device Setup Classes |
|
301
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
115 |
|
303 | 116 |
* How list drivers? |
117 |
||
118 |
Set environment devmgr_show_nonpresent_devices to 1 and run Device Manager, |
|
119 |
select "View" --> "Show hidden devices". |
|
120 |
||
301
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
121 |
* How install drivers? |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
122 |
|
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
123 |
Driver Install Frameworks (DIFx) tools allow installing driver under following |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
124 |
OSes: |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
125 |
|
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
126 |
Windows Server 2008 R2 |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
127 |
Windows 7 |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
128 |
Windows Server 2008 |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
129 |
Windows Vista |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
130 |
Windows Server 2003 |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
131 |
Windows XP |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
132 |
Windows 2000 |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
133 |
|
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
134 |
It consist from API (from library, DIFxAPI, DIFxApp) and command line tool |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
135 |
(DPInst) which can be found in WDK and their licence allow redistribution. |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
136 |
|
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
137 |
http://www.microsoft.com/whdc/driver/install/DIFxFAQ.mspx |
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
138 |
Information about Driver Install Frameworks Tools |
303 | 139 |
http://msdn.microsoft.com/ru-ru/magazine/cc302206%28en-us%29.aspx |
140 |
If you update any drivers in Device Manager |
|
141 |
%windir%\system32\ReinstallBackups folder is created with |
|
142 |
backups of the old drivers. |
|
301
072d4cc9d726
How install drivers?
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
284
diff
changeset
|
143 |