0
幫助我,使用命令行啓用和禁用我的XP中的WIFI。啓用禁用XP WIFI使用命令行
試過: netsh接口設置接口名稱=「無線網絡連接」管理員=禁用 但它顯示,更多的數據顯示。
此外,「netsh interface show interface」 不顯示任何接口名稱。
在此先感謝。
幫助我,使用命令行啓用和禁用我的XP中的WIFI。啓用禁用XP WIFI使用命令行
試過: netsh接口設置接口名稱=「無線網絡連接」管理員=禁用 但它顯示,更多的數據顯示。
此外,「netsh interface show interface」 不顯示任何接口名稱。
在此先感謝。
這是命令應該正常工作。你確定它沒有被禁用?真的有連接可用名稱Wireless Network Connection
?
在你的命令,嘗試用實際的連接名稱替換Wireless Network Connection
像Local Area Connection
netsh interface set interface name="Local Area Connection" admin=disabled
此外,如果下面的命令不顯示我又懷疑,你有任何配置網絡接口。檢查以確保。
netsh interface show interface
可以如用下面的替代方式,以啓用/禁用的特定連接[從MS Community Answer引]
開始升高命令提示。
獲取網卡列表索引號:
wmic nic get name, index
索引號啓用網卡:(例如:7)
wmic path win32_networkadapter where index=7 call enable
禁用網卡的索引號爲:(例如:7)
wmic path win32_networkadapter where index=7 call disable