方法一
命令行运行以下指令
set devmgr_show_nonpresent_devices=1
DEVMGMT.MSC
这里打上勾
手动删除隐藏网卡
方法二
下载devcon.exe,这个程序是Windows SDK的一部分,找一个适合自己系统的。运行以下批处理程序。第一行:删除所有网卡(包括已连接的和未连接的),第二行:扫描重新安装网卡。
for /f "delims=:" %%x in ('devcon.exe findall "PCI\VEN_8086&DEV_100F*"') do devcon.exe remove "@%%x"
devcon.exe rescan
方法三
仍使用devcon.exe。第一次执行:
devcon find "PCI\VEN_8086&DEV_100F*"
第二次执行:
devcon findall "PCI\VEN_8086&DEV_100F*"
比较二次的差异,把不同的网卡删掉: