pandy05 发表于 2011-12-25 17:07:23

请高手帮忙看看为什么runaswait 运行不成功,谢谢

前面有定义手动输入IP $ipadd,掩码 $mask,网关 $gateway但是为什么运行就是不起作用呢?下面的字符串连接有问题吗?请高手帮忙看看,先谢过啦RunAsWait("administrator",@computername,"passw0rd",0,@ComSpec & ' /c netsh interface ip set address "本地连接" static ' & $ipadd & ' ' & $mask & ' ' & $gateway & ' 1',"", @SW_HIDE)

hzxymkb 发表于 2011-12-25 19:48:04

password

einiter 发表于 2011-12-25 20:03:46

netsh 那样设置貌似要加-c的参数
netsh /c interface ip set address "本地连接" static ' & $ipadd & ' ' & $mask & ' ' & $gateway & ' 1'
你或者用
netsh interface ip set address name="本地连接" source=static addr=%IPADDR% mask=255.255.255.0这种方式改IP 和网关。

chester1102 发表于 2011-12-26 10:56:57

好東西幫忙推一下
页: [1]
查看完整版本: 请高手帮忙看看为什么runaswait 运行不成功,谢谢