怎么删除网络位置
进入命令行
修改ip,子网掩码,网关,dns。“网络连接名”是你机器上网络属性里看到的连接名,把下面改成自己的连接名,一般是"本地连接",不是的自行修改。
netsh interface ip set address "本地连接" static 192.168.0.88 255.255.255.0 192.168.0.1 1
netsh interface ip set dns "本地连接" static 202.216.224.66【改为域网络的DNS服务器,我都用google的8.8.8.8】
netsh interface ip add dns "本地连接" 202.216.224.67
如果要删除,可改成动态分配ip和自动获得dns使用下面命令。
netsh interface ip set address "网络连接名" dhcp
netsh interface ip set dns "网络连接名" dhcp