编程论坛
注册
登录
编程论坛
→
VB6论坛
VB6怎么禁用网卡
eastcar
发布于 2022-05-16 21:49, 1311 次点击
VB6.0如何禁用上网的网卡,求教!
1 回复
#2
yuma
2022-05-17 06:32
禁用网卡:
netsh interface set interface "本地连接" disabled
netsh interface set interface "WLAN" disabled
启用网卡 :
netsh interface set interface "本地连接" enabled
netsh interface set interface "WLAN" enabled
1