dos下通过命令访问url网址

时间:2019-06-11
本文章向大家介绍dos下通过命令访问url网址,主要包括dos下通过命令访问url网址使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

psexec.exe工具:

https://blog.csdn.net/feier7501/article/details/8841756

https://www.cnblogs.com/boltkiller/articles/4791307.html

https://www.cnblogs.com/sela/p/5506531.html

https://blog.csdn.net/feier7501/article/details/8847172

问题背景:

  自动化部署之前一直都是linux文件互传或者linux和windows之间,现在有一个windows到windows的,在网上一直没有合适的方案。

解决方案:

  1、使用python命令使局域网其他机器可以访问jar包所在机器(A机器)

  2、在服务器(B机器)上使用start http://192.168.207.39/exp_server-1.0.zip命令下载该应用包(也可以直接在A机器上使用psexec.exe工具连接B机器的cmd执行start http://192.168.207.39/exp_server-1.0.zip命令)

  3、启动对应jar

#启动chrome浏览器指定网址  
start "C:\Program Files\Google\Chrome\Application\chrome.exe" http://www.weibo.com/  
  
#默认浏览器打开网站  
start iexplore.exe www.baidu.com  
  
或者  
  
start www.baidu.com  
  
#使用IE打开指定网址  
explorer http://www.weibo.com  

原文地址:https://www.cnblogs.com/gcgc/p/11003373.html