bat to exe converter - 转换为exe后代码不起作用

时间:2015-03-11 10:41:14

标签: batch-file converter exe

将bat文件转换为exe后,代码不再起作用。需要在Windows XP上运行exe。为什么代码在转换为exe后无效? 这是代码:

@rasdial VPN user password
@setlocal
@for /f "tokens=1-2 delims=:" %%i in ('ipconfig ^| find "IP Address" ^| find "172.23"') do set GETIP=%%j
@route add 172.21.233.0 mask 255.255.255.0 %GetIp%
@endlocal

谢谢。

1 个答案:

答案 0 :(得分:2)

  1. 停止使用@。

  2. 隐藏输出
  3. 在最后一行暂停一下。

  4. 阅读它的内容。