Board logo

标题: 批处理获取所有网卡名称 然后全部禁用 费用100 [打印本页]

作者: 引流专家    时间: 2020-6-30 08:05     标题: 批处理获取所有网卡名称 然后全部禁用 费用100

批处理获取所有网卡名称 然后全部禁用

费用100

加我微信13762818327
作者: 大地    时间: 2020-6-30 10:22

回复 1# 引流专家


  不知你的是什么操作系统
win10的 我正好昨天刚学会 。
作者: yhcfsr    时间: 2020-6-30 11:27

所需工具:devcon64
  1. @echo off&cd /d "%~dp0"
  2. for /f "delims=: tokens=2" %%a in ('ipconfig /all^|find "描述"') do (
  3. for /f "delims=& tokens=1,2" %%i in ('devcon64 find "pci\*"^|find "%%a"') do (
  4. devcon64 disable "%%i&%%j"&&echo;禁用成功:%%a
  5. )
  6. )
  7. pause
复制代码

作者: zaqmlp    时间: 2020-6-30 12:23

  1. @echo off
  2. for /f "tokens=1* delims==" %%a in ('wmic nic get NetConnectionID /value^|find "="') do (
  3.    for /f %%c in ("%%b") do (
  4.         echo;"%%c"
  5.         netsh interface set interface "%%c" disabled
  6.    )
  7. )
  8. pause
  9. exit
复制代码

作者: WHY    时间: 2020-7-1 13:45

本帖最后由 WHY 于 2020-7-1 18:26 编辑

wmic Path win32_NetWorkAdapter where "PNPDeviceID Like 'PCI%'" get Name
wmic Path win32_NetWorkAdapter where "PNPDeviceID Like 'PCI%'" call Disable
作者: 1049918599    时间: 2023-1-17 15:37

回复 4# zaqmlp


    您微信添加不上
作者: mzzyb    时间: 2023-1-17 16:49

我擦~~这就100软妹子到手~~~




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2