[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[网络连接] 批处理怎样根据网关地址来运行不同的程序?

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

如何判断不同的内网 网关来运行不同的程序

  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
复制代码
目的,学习批处理

TOP

回复 2# hlzj88


    “你的任务”下面少了一行
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

  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
复制代码
提供bat代写,为你省时省力省事,支付宝扫码头像支付
微信: unique2random

TOP

回复 3# Batcher

的确是少了,失误。
目的,学习批处理

TOP

返回列表