Board logo

标题: [网络连接] 批处理怎样根据网关地址来运行不同的程序? [打印本页]

作者: along865    时间: 2019-10-7 23:42     标题: 批处理怎样根据网关地址来运行不同的程序?

公司有多个的部门 每个部门 做的都有vlan
部门1 网关 10.5.1.254
部门2 网关 10.6.1.254
部门3 网关 10.7.1.254

如何判断不同的内网 网关来运行不同的程序
作者: hlzj88    时间: 2019-10-8 06:29

  1. ipconfig|findstr /i "10.5.1.254"&&goto aa
  2. ipconfig|findstr /i "10.6.1.254"&&goto bb
  3. ipconfig|findstr /i "10.7.1.254"&&goto cc
  4. exit
  5. :aa
  6. 你的任务
  7. :bb
  8. 你的任务
  9. :cc
  10. 你的任务
  11. pause
复制代码

作者: Batcher    时间: 2019-10-8 08:16

回复 2# hlzj88


    “你的任务”下面少了一行
作者: zaqmlp    时间: 2019-10-8 13:53

  1. @echo off
  2. set info=互助互利,支付宝扫码头像,感谢打赏
  3. rem 有问题,可加QQ956535081及时沟通
  4. title %info%
  5. ipconfig|findstr /li /c:"Default Gateway" /c:"默认网关">"%tmp%\t.t"
  6. type "%tmp%\t.t"|findstr "\<10\.5\.1\.254\>"&&goto p1
  7. type "%tmp%\t.t"|findstr "\<10\.6\.1\.254\>"&&goto p2
  8. type "%tmp%\t.t"|findstr "\<10\.7\.1\.254\>"&&goto p3
  9. echo;no match
  10. goto end
  11. :p1
  12. start "" "D:\xxx\程序1.exe"
  13. goto end
  14. :p2
  15. start "" "D:\xxx\程序2.exe"
  16. goto end
  17. :p3
  18. start "" "D:\xxx\程序3.exe"
  19. :end
  20. echo;%info%
  21. pause
复制代码

作者: hlzj88    时间: 2019-10-9 20:57

回复 3# Batcher

的确是少了,失误。




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2