Компьютерный форум OSzone.net  

Компьютерный форум OSzone.net (http://forum.oszone.net/index.php)
-   Хочу все знать (http://forum.oszone.net/forumdisplay.php?f=23)
-   -   [решено] Где в 7-ке находится список драйверов, которые она загружает во время запуска? (http://forum.oszone.net/showthread.php?t=339368)

Qk3 23-02-2019 09:08 2859476

Где в 7-ке находится список драйверов, которые она загружает во время запуска?
 
То, что есть диспетчер устройств, я знаю. Но он где-то читает что было загружено..
Где находится список драйверов, которые ОС загружает во время запуска?

Grabber2006 23-02-2019 09:25 2859479

В командной строке: driverquery.

Qk3 23-02-2019 09:34 2859480

Большое спасибо! А driverquery откуда читает?

Petya V4sechkin 23-02-2019 10:49 2859484

Qk3, перечень загружаемых драйверов и служб в разделе реестра
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services

Тип записи (драйвер или служба) определяется параметром Type:
Скрытый текст
Код:

Type    REG_DWORD    Type constant

Specifies the type of service as follows:

Service Type  Description

0x1            A Kernel device driver.

0x2            File system driver, which is also
              a Kernel device driver.

0x4            A set of arguments for an adapter.

0x10          A Win32 program that can be started
              by the Service Controller and that
              obeys the service control protocol.
              This type of Win32 service runs in
              a process by itself.

0x20          A Win32 service that can share a process
              with other Win32 services.

For example, when you start Windows NT, the Boot Loader scans the Registry
for drivers with a Start value of 0 (which indicates that these drivers
should be loaded but not initialized before the Kernel) and a Type value of
0x1 (which indicates a Kernel device driver such as a hard disk or other
low-level hardware device driver). The drivers are then loaded into memory
in the order specified as the List value in
CurrentControlSet\Control\ServiceGroupOrder.


А тип запуска - параметром Start:
Скрытый текст
Код:

Start    REG_DWORD    Start constant
Specifies the starting values for the service as follows:

START TYPE    LOADER    MEANING

0x0            Kernel    Represents a part of the
(Boot)                    driver stack for the boot
                          (startup) volume and must
                          therefore be loaded by the
                          Boot Loader.

0x1            I/O        Represents a driver to be loaded
(System)      subsystem  at Kernel initialization.

0x2            Service    To be loaded or started
(Auto load)    Control    automatically for all startups,
              Manager    regardless of service type.

0x3            Service    Available, regardless of type,
(Load on      Control    but will not be started until
demand)        Manager    the user starts it (for example,
                          by using the Devices icon in
                          Control Panel).

0x4            Service    NOT TO BE STARTED UNDER ANY
(disabled)    Control    CONDITIONS.
              Manager

The Start value is ignored for adapters. If Type is a Win32 Service value
(as described below), the Start value must specify an Auto, Demand, or
Disabled value.


Qk3 23-02-2019 11:37 2859490

Большое спасибо!


Время: 19:45.

Время: 19:45.
© OSzone.net 2001-