Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows教程綜合 >> 關於windows >> Windows7/2008中批量刪除隧道適配器的方法

Windows7/2008中批量刪除隧道適配器的方法

日期:2017/2/8 17:38:14      編輯:關於windows

1.在網卡屬性的“網絡”中,將“Internet協議版本(TCP/IPv6)”前面的勾去掉。
2.在CMD下分別執行如下三條命令。
netsh interface teredo set state disable
netsh interface 6to4 set state disable
netsh interface isatap set state disable
3. 在“設備管理器”中先在“查看”菜單中選擇“顯示隱藏的設備”,然後在網絡適配器中可以看到很多 6to4 Adapter或者isatap Adapter的隧道適配器。刪掉所有這些。
技巧:一個個刪實在是太痛苦。微軟提供了命令行下對設備管理的工具,名字叫做DevCon.exe 下載後,其中包括32位和64位使用的版本,選擇適合自己的版本,然後在命令行CMD中運行如下命令: devcon remove *6to4(作用就是刪除所有的隧道適配器) 最後CMD裡ipconfig命令下,如果只有以太適配器和無線適配器(如果你有無線網卡),那麼就說明你已經刪除干淨了。 重啟電腦。

以下是本人自用的批處理,復制另存為.BAT文件可用。需要下載devcon64.exe

軟件名稱:
devcon.exe 可以替代設備管理器的工具(支持32/64位系統)
軟件大小:
38KB
更新時間:
2012-10-31



復制代碼代碼如下:
@ECHO OFF
::復制devcon64.exe跟此BAT放在一起,或者devcon64放到Windows系統目錄
netsh interface teredo set state disable
netsh interface 6to4 set state disable
netsh interface isatap set state disable
devcon64 remove *teredo
devcon64 remove *6to4
devcon64 remove *isatap
@pause

Copyright © Windows教程網 All Rights Reserved