Как удалить адаптер замыкания на себя в Windows 7 с помощью пакетного сценария?

Я создал 10 адаптеров замыкания на себя в Windows 7 с помощью devcon

devcon -r install %WINDIR%InfNetloop.inf *MSLOOP

Я положил это в цикл for, и все в порядке, но теперь я хочу удалить их с помощью пакетного сценария? Как это сделать? Я обнаружил, что я могу отключить их, но я хочу, чтобы удалить их постоянно, а не просто отключить их.
Если есть какой-то способ использовать devcon снова?

Device Console Help:
devcon [-r] [-m:<machine>] <command> [<arg>...]
-r           Reboots the system only when a restart or reboot is required.
<machine>    Specifies a remote computer.
<command>    Specifies a Devcon command (see command list below).
<arg>...     One or more arguments that modify a command.
For help with a specific command, type: devcon help <command>
classfilter          Add, delete, and reorder class filters.
classes              List all device setup classes.
disable              Disable devices.
driverfiles          List installed driver files for devices.
drivernodes          List driver nodes of devices.
enable               Enable devices.
find                 Find devices.
findall              Find devices, including those that are not currently attached.
help                 Display Devcon help.
hwids                List hardware IDs of devices.
install              Install a device manually.
remove               Remove devices.

...

20
задан Hennes
26.04.2023 0:01 Количество просмотров материала 2944
Распечатать страницу

1 ответ

удалить все петлевые адаптеры

devcon /r remove =net "@ROOT\NET\*"

здесь =net класс

@ROOT\NET\* - это шаблон для всех IDs адаптеры.

чтобы показать имя адаптеров, напишите:

devcon status =net "@ROOT\NET\*"
0
отвечен Xelian 2023-04-27 07:49

Постоянная ссылка на данную страницу: [ Скопировать ссылку | Сгенерировать QR-код ]

Ваш ответ

Опубликуйте как Гость или авторизуйтесь

Имя
Вверх