Что такое Microsoft Kernel Debug Network Adapter и можно ли его отключить

Изучая список доступных устройств в диспетчере устройств, вы можете обратить внимание на наличие пункта «Microsoft Kernel Debug Network Adapter» в разделе «Сетевые адаптеры». Обычно устройство отображается лишь в случае, если отметить опцию «Показать скрытые устройства» в меню «Вид», но иногда видно и без этого действия.
В этой статье о том, что такое Microsoft Kernel Debug Network Adapter (или «Сетевой адаптер с отладкой ядра») в Windows 11, Windows 10 и других версиях системы, для чего нужен, следует ли и можно ли предпринимать какие-либо действия в отношении этого сетевого адаптера.
Назначение Microsoft Kernel Debug Network Adapter

Microsoft Kernel Debug Network Adapter (Сетевой адаптер с отладкой ядра) — виртуальный сетевой адаптер, предназначенный для удаленной отладки Windows по сети.

В ранних версиях Windows отладка проводилась через последовательный порт, USB или Firewire, а начиная с Windows Server 2012 и заканчивая актуальными версиями Windows 11 и Windows 10 стала доступна и отладка по сети, где и используется рассматриваемое виртуальное сетевое устройство.
Для рядового пользователя на домашнем компьютере или ноутбуке обычно будут одновременно верны следующие два утверждения:
- Никакого применения для Microsoft Kernel Debug Network Adapter в вашем случае нет.
- Никакого вреда от наличия этого устройства также нет — ни для работы, ни производительности системы.
Можно ли удалить или отключить Microsoft Kernel Debug Network Adapter
Да, вы можете отключить Microsoft Kernel Debug Network Adapter просто нажав по нему правой кнопкой мыши в диспетчере устройств и выбрав пункт «Отключить устройство»:

Это не должно привести к каким-либо проблемам с работой сети или Интернета. Однако, есть редкие отзывы, где такие проблемы возникают. Поэтому я не рекомендую удалять его, во всяком случае пока не убедитесь, что после отключения сетевого адаптера всё работает исправно.
Среди прочих советов, позволяющих убрать Microsoft Kernel Debug Network Adapter из диспетчера устройств, можно встретить рекомендацию отключить возможность отладки Windows:

- Запустите командную строку от имени администратора.
- Введите командуи нажмите Enter.
- Закройте командную строку и перезагрузите компьютер.
По этому поводу могу отметить, что:

- Эти действия не убирают устройство в актуальных версиях Windows.
- Отладка и без того обычно отключена на компьютерах пользователей. Посмотреть её статус можно с помощью команды bcdedit /enum в командной строке. Если в разделе «Загрузка Windows» отсутствует пункт «debug» или для него установлено значение «No», это говорит об отключенной отладке.
На этом завершаю. Если у вас остаются дополнительные вопросы по рассмотренной теме, жду их в комментариях ниже.
Name already in use
windows-driver-docs / windows-driver-docs-pr / devtest / bcdedit—debug.md
- Go to file T
- Go to line L
- Copy path
- Copy permalink
- Open with Desktop
- View raw
- Copy raw contents Copy raw contents
Copy raw contents
Copy raw contents
The /debug boot option enables or disables kernel debugging of the Windows operating system associated with the specified boot entry or the current boot entry.
[!CAUTION] Administrative privileges are required to use BCDEdit to modify BCD. Changing some boot entry options using the BCDEdit command could render your computer inoperable. As an alternative, use the Startup settings in Windows.
[!NOTE] Before setting BCDEdit options you might need to disable or suspend BitLocker and Secure Boot on the computer.
The <ID> is the ID that is associated with the boot entry, such as
on
Enables kernel debugging of the specified boot entry. If a boot entry is not specified, kernel debugging is enabled for the current operating system.
off
Disables kernel debugger of the specified boot entry. If a boot entry is not specified, kernel debugging is disabled for the current operating system.
The /debug boot option enables kernel debugging for a specific boot entry. Use the /dbgsettings option to configure the type of debugging connection to use and the connection parameters. If no /dbgsettings are specified for the boot entry, the global debug settings are used. The default values for the global settings are shown in the following table.
| dbgsetting parameter | Default value |
|---|---|
| debugtype | Local |
| debugstart | Active |
| noumex | Yes |
The following example enables kernel debugging of the default boot entry.
To check the current debugging parameter values, use the BCDEdit /dbgsettings command as shown here.
MS-DOS and Windows command line bcdedit command
The bcdedit command line tool modifies the boot configuration data store, contains configuration parameters and controls how the operating system is booted. These parameters were previously in the boot.ini file (in BIOS-based operating systems) or in the nonvolatile RAM entries (in EFI (Extensible Firmware Interface-based) operating systems). You can use Bcdedit.exe to add, delete, edit, and append entries in the boot configuration data store.
Availability
Bcdedit is an external command that is available for the following Microsoft operating systems as bcdedit.exe.
Bcdedit syntax
To use the bcdedit command, you must be in an elevated command prompt.
Running "bcdedit" by itself is equivalent to running "bcdedit /enum ACTIVE".
Commands that operate on a store
This command creates a new empty boot configuration data store. The created store is not a system store.
<file name> specifies the file name of the boot configuration data store. If the file name contains spaces, it must be enclosed in quotation marks ("").
The following command creates the specified store file:
This command exports the contents of the system store into a file. This file can be used later to restore the state of the system store. This command is only valid for the system store.
<file name> is the file name to be used as the destination for the export. If the file name contains spaces, it must be enclosed in quotation marks ("").
The following command exports the system store to the specified file:
This command restores the state of the system store using a backup data file previously generated using the /export command. Any existing entries in the system store are deleted before the import takes place. This command is only valid for the system store.
<file name> the name of the file that is imported into the system store.
If the file name contains spaces, it must be enclosed in quotation marks ("").
/clean specifies that all existing firmware boot entries should be deleted (only affects EFI systems).
The following command imports the specified file into the system store.
This command sets the system store device. This command is only valid for EFI systems in cases where the system store device is ambiguous. This setting does not persist across reboots.
<devicename> the name of a system partition to set as the system store device. The device must be a system partition.
The following command sets the system store device as specified:
Commands that operate on entries in a store
This command creates a copy of the specified boot entry.
<file name> specifies the store to be used. If this option is not specified, the system store is used. For more information, run "bcdedit /? store".
<id> specifies the identifier of the entry to be copied. For more information about identifiers, run"bcdedit /? ID".
<description> specifies the description to be applied to the new entry.
The following command creates a copy of the specified operating system boot entry:
The following command creates an NTLDR based OS loader entry (Ntldr):
The following command creates a RAM disk additional options entry:
The following command creates a new operating system boot entry:
The following command creates a new debugger settings entry:
This command deletes an entry from the boot configuration data store.
<file name> specifies the store to be used. If this option is not specified, the system store is used. For more information, run "bcdedit /? store".
<id> specifies the identifier of the boot entry that you want to delete. For more information about identifiers, run "bcdedit /? ID".
/f — Deletes the specified entry. Without this option, bcdedit will not delete any entries that have a well-known identifier.
/cleanup — Deletes the specified entry and removes the entry from the display order. Any other references to the entry being deleted are removed from the store. When deleting an OS loader entry, the associated resume from hibernation entry is also deleted if it is not referenced by any other OS loaders. This option is assumed unless /nocleanup is specified.
/nocleanup — Deletes the specified entry without removing the entry from the display order.
The following command deletes the specified operating system entry from the store and removes the entry from the display order:
The following command deletes the specified operating system entry from the store and removes the entry from the display order:
The following command deletes the specified operating system entry from the store without removing the entry from the display order:
The following command deletes the NTLDR based OS loader entry from the store:
This command creates a mirror of the specified boot entry.
<file name> specifies the store to be used. If this option is not specified, the system store is used. For more information, run "bcdedit /? store".
<id> specifies the identifier of the entry to be mirrored. For more information about identifiers, run "bcdedit /? ID".
The following command creates a mirror of the specified operating system boot entry:
Commands that operate on entry options
This command deletes a data element from an entry in the boot configuration data store.
<file name> specifies the store to be used. If this option is not specified, the system store is used. For more information, run "bcdedit /? store".
<id> specifies the identifier of the entry that will be modified. If not specified,
<datatype> specifies the option that will be removed from the specified entry. Run "bcdedit /? TYPES" for more information about data types.
The following command deletes the bootsequence option from the boot manager entry:
The following command deletes the Windows Pre-installation Environment (WinPE) value from the current operating system boot entry:
The following command deletes the Windows PE value from the specified operating system boot entry:
This command sets an entry option value in the boot configuration data store.
<file name> specifies the store to be used. If this option is not specified, the system store is used. For more information, run "bcdedit /? store".
<id> specifies the identifier of the entry to be modified. If not specified,
<datatype> specifies the option data type that will be created or modified. Run "bcdedit /? TYPES" for more information about data types.
<value> specifies the value that should be assigned to the option. The format of <value> depends on the data type specified. Run "bcdedit /? FORMATS" for more information about data formats.
/addfirst — This switch can only be used if datatype is an object list. Adds the specified entry identifier to the top of the list. If this switch is specified, only a single entry identifier may be specified. If the specified identifier is already in the list, it is moved to the top of the list.
/addlast — This switch can only be used if datatype is an object list. Adds the specified entry identifier to the end of the list. If this switch is specified, only a single entry identifier may be specified. If the specified identifier is already in the list, it is moved to the end of the list.
/remove — This switch can only be used if datatype is an object list. Removes the specified entry identifier from the list. If this switch is specified, only a single entry identifier may be specified. If the identifier is not in the list, then the operation has no effect. If the last entry is being removed, then the datatype value is deleted.
The following command sets the application device to the partition C: for the specified operating system entry:
NOTE: Use 'hd_partiton=' syntax to explicitly disable automatic VHD detection, and create entries that are compatible for booting a virtual machine, for example:
The following command sets the OS device to a VHD file (C:\vdisks\vdisk01.vhd) for the specified operating system entry:
The following command sets the application path to \windows\system32\winload.exe for the specified operating system entry:
The following command sets the NX policy to OptIn for the current operating system boot entry.
Commands that control output
This command lists entries in a store. The /enum command is the default, so running "bcdedit" without parameters is equivalent to running "bcdedit /enum ACTIVE".
<file name> specifies the store to be used. If this option is not specified, the system store is used. For more information, run "bcdedit /? store".
<type> specifies the type of entries to be listed. <type> can be one of the following:
ACTIVE — All entries in the boot manager display order by default.
FIRMWARE — All firmware applications.
BOOTAPP — All boot environment applications.
BOOTMGR — The boot manager.
OSLOADER — All operating system entries.
RESUME — All resume from hibernation entries.
INHERIT — All inherit entries.
ALL — Do all entries.
<id> specifies the identifier of the entry to be listed. If an identifier is provided, then only the specified object will be listed. For information about identifiers, run "bcdedit /? ID".
/v Displays entry identifiers in full, rather than using names for well-known identifiers.
The following command lists all operating system loader boot entries:
The following command lists all boot manager entries:
The following command lists only the default boot entry:
The following command lists only the specified operating system boot entry:
Command line option that displays entry identifiers in full, rather than using names for well-known identifiers.
Use /v by itself as a command to display entry identifiers in full for the ACTIVE type.
Usually, any well-known entry identifiers are replaced by their friendly shorthand form. Specifying /v as a command line switch prevents this replacement and displays all identifiers in full. Running "bcdedit /v" by itself is equivalent to running "bcdedit /enum ACTIVE /v".
The following command lists the active entries in the system store with all entry identifiers displayed in full.
Commands that control the boot manager
This command sets the one-time boot sequence to be used by the boot manager.
<id> [. ] specifies a list of identifiers that make up the boot sequence. You must specify at least one identifier and must separate identifiers by spaces. For more information about identifiers, run "bcdedit /? ID".
/addfirst — Adds the specified entry identifier to the top of the boot sequence. If this switch is specified, only a single identifier may be specified. If the identifier is already in the list, it is moved to the top of the list.
/addlast — Adds the specified entry identifier to the end of the boot sequence. If this switch is specified, only a single identifier may be specified. If the identifier is already in the list, it is moved to the end of the list.
/remove — Removes the specified entry identifier from the boot sequence. If this switch is specified, only a single entry identifier may be specified. If the identifier is not in the list, then the operation has no effect. If the last entry is being removed, then the boot sequence value is deleted from the boot manager entry.
The following command sets two OS entries and the NTLDR based OS loader in the boot manager one-time boot sequence:
The following command adds the specified OS entry to the end of the boot manager one-time boot sequence:
This command sets the default entry that the boot manager will use when the timeout expires.
<id> specifies the identifier of the boot entry to be used as the default when the time-out expires. For information about identifiers, run "bcdedit /? ID".
The following command sets the specified entry as the default boot manager entry:
The following command sets the NTLDR based OS loader as the default entry:
This command sets the display order to be used by the boot manager.
<id> [. ] specifies a list of identifiers that make up the display order. At least one identifier must be specified and they must be separated by spaces. For more information about identifiers, run "bcdedit /? ID".
/addfirst — Adds the specified entry identifier to the top of the display order. If this switch is specified, only a single entry identifier may be specified. If the specified identifier is already in the list, it is moved to the top of the list.
/addlast — Adds the specified entry identifier to the end of the display order. If this switch is specified, only a single entry identifier may be specified. If the specified identifier is already in the list, it is moved to the end of the list.
/remove — Removes the specified entry identifier from the display order. If this switch is specified, only a single entry identifier may be specified. If the identifier is not in the list, then the operation has no effect. If the last entry is being removed, then the display order value is deleted from the boot manager entry.
The following command sets two OS entries and the NTLDR based OS loader in the boot manager display order:
The following command adds the specified OS entry to the end of the boot manager display order:
This command sets the time to wait, in seconds, before the boot manager selects a default entry. For information about setting the default entry, run "bcdedit /? default".
<timeout> specifies the time to wait, in seconds, before the boot manager selects a default entry.
The following command sets the boot manager <timeout> to 30 seconds:
This command will set the display order to be used by the boot manager when displaying the tools menu.
<id> [. ] specifies a list of identifiers that make up the tools display order. At least one identifier must be specified and they must be separated by spaces. For more information about identifiers, run "bcdedit /? ID".
/addfirst — Adds the specified entry identifier to the top of the tools display order. If this switch is specified, only a single entry identifier may be specified. If the specified identifier is already in the list, it is moved to the top of the list.
/addlast — Adds the specified entry identifier to the end of the tools display order. If this switch is specified, only a single entry identifier may be specified. If the specified identifier is already in the list, it is moved to the end of the list.
/remove — Removes the specified entry identifier from the tools display order. If this switch is specified, only a single entry identifier may be specified. If the identifier is not in the list, then the operation has no effect. If the last entry is being removed, then the tools display order value is deleted from the boot manager entry.
The following command sets two tools entries and the memory diagnostic in the boot manager's tools display order:
The following command adds the specified tool entry to the end of the boot manager's tools display order:
Commands that control Emergency Management Services for a boot application
This command enables or disables Emergency Management Services for the specified entry.
<id> specifies the identifier of the entry to be modified. Although this command will work for any entry, it is only effective for boot applications.
The following command enables Emergency Management Services for the boot manager:
This command enables or disables Emergency Management Services for the specified operating system boot entry.
<id> specifies the identifier of the entry to be modified. Only "Windows boot loader" entries can be specified. If not specified,
The following command enables Emergency Management Services for the current operating system boot entry:
This command sets the global Emergency Management Services settings for the system. Emssettings does not enable or disable Emergency Management Services for any particular boot entry.
BIOS specifies that the system will use BIOS settings for the Emergency Management Services configuration. This switch only works on systems that have Emergency Management Services support provided by the BIOS.
<port> specifies the serial port to use as the Emergency Management Services port. This option should not be specified with the BIOS option.
<baudrate> specifies the serial baud rate to use for Emergency Management Services. This command should not be specified with the BIOS option. <baudrate> is optional, and the default is 9,600 baud.
The following command sets the Emergency Management Services parameters to use BIOS settings:
The following command sets the Emergency Management Services parameters to use com2: at 115,200 baud.
Command that control debugging
This command enables or disables the boot debugger for the specified boot entry. Although this command works for any entry, it is only effective for boot applications.
<id> specifies the identifier of the entry to be modified. For information about identifiers, run "bcdedit /? ID".
The following command enables boot debugging for the Windows operating system loader of the current operating system boot entry:
The following command disables boot debugging for the Windows boot manager:
Sets the global debugger parameters.
This command enables or disables the kernel debugger for the specified boot entry.
<id> specifies the identifier of the entry to be modified. Only Windows boot loader entries may be specified. If not specified,
The following command enables kernel debugging for the current Windows operating system boot entry:
The following command disables kernel debugging for the specified operating system entry:
This command sets or displays the hypervisor settings for the system.
This command does not enable or disable the hypervisor debugger for any particular OS loader entry. To enable or disable the hypervisor debugger for a particular OS loader entry, use "bcdedit /set <identifier> HYPERVISORDEBUG ON". For information about identifiers, run "bcdedit /? ID".
To set an individual hypervisor debugger setting, use "bcdedit /set
<debugtype> specifies the type of debugger. <debugtype> can be one of SERIAL, 1394, or NET.
<port> for SERIAL debugging, specifies the serial port to use as the debugging port.
<baud> for SERIAL debugging, specifies the baud rate to be used for debugging.
<channel> for 1394 debugging, specifies the 1394 channel to be used for debugging.
<ip> for network debugging, specifies the IPv4 address of the host debugger.
<port> for network debugging, specifies the port to communicate with on the host debugger. Should be 49152 or higher.
The following command displays the current hypervisor settings:
The following command sets the hypervisor debugger settings to serial debugging over COM1 at 115,200 baud:
The following command sets the hypervisor debugger settings to 1394 debugging using channel 23:
The following command sets the hypervisor debugger settings to network debugging with a debugger host at 192.168.1.2 communicating on port 50000:
Bcdedit examples
See each of the above bcdedit command switch syntax and examples.
See our Safe Mode page for steps on using bcdedit to boot into Windows Safe Mode from a command line.
RaviSankar's Blog
While experimenting with my Windows 7 computer I installed some application and it enabled debugging mode and put a water mark on the screen saying “test mode” along with OS name and version number. The debugging mode option was displayed at the boot selector menu while starting the computer , otherwise this setting is not very evident.
If you want to confirm that these settings are enabled or not in your computer, type the command bcdedit from an elevated (Run as administrator) command prompt and read through the output on the screen.
Following are the commands to disable debugging mode
bcdedit /debug OFF
To disable debugging for another OS instance in the same computer type the following commands
bcdedit /debug {GUID} OFF.
GUID can also be found from the output of bcdedit command
Here is the command to remove the “test mode” water mark from your screen