搞了个切换Ip的bat cmd里面运行正常
但是复制到插件里面就运行出错了
下面是脚本内容:
@Echo off
color 00
title IP切换脚本
:start
@Echo ---------------------------------
@Echo IP模式:
@Echo 1.自动获取IP
@Echo 2.固定IP
@Echo 3.连接读写器IP
@Echo ---------------------------------
set /p sLocal=请选择:
if %sLocal%==1 goto dhcp
if %sLocal%==2 goto static
if %sLocal%==3 goto rw
cls
@Echo 选择错误,请重新选择
goto start
:dhcp
@Echo 正在设置以太网 为DHCP模式
netsh interface ip set address 以太网 dhcp
goto end
:static
@Echo 正在设置以太网为固定IP:10.9.52.25
netsh interface ip set address 以太网 static 10.9.52.25 255.255.255.0 10.9.52.254
goto end
:rw
@Echo 正在设置以太网为连接读写器IP:192.168.1.1
netsh interface ip set address 以太网 static 192.168.1.1 255.255.255.0 192.168.1.254
:end
echo 设置完成,自动退出
pause