zoukankan      html  css  js  c++  java
  • windows下批量换程序——运维常用

    Windows一批机器,需要批量换程序。写个脚本给大家。

    net stop sharedaccess         (关闭防火墙)
    del /s d:*.log d:*.vbs  d:*.pdb d:*.vbs d:*.dmp  (删除日志)
    D:
    cd D:Newsvr
    ftp 192.168.1.1                    (程序先放在FTP里,windows2003是不能直接拖拽的哦)
    admin
    admin
    cd guoyabin
    get aaa2015-4-16.exe         
    get xxx2015-4-16.vbs
    by
    
    copy aaa2015-4-16.exe D:Newsvraaa1 /Y
    copy aaa2015-4-16.exe D:Newsvraaa2 /Y
    copy aaa2015-4-16.exe D:Newsvraaa3 /Y
    copy aaa2015-4-16.exe D:Newsvraaa4 /Y
    
    xxx2015-4-16.vbs                 (替换keeper配置文件里的内容)
    
    taskkill /im /f aaa2015-4-15.exe   (杀死老进程)
    
    配合keeper程序使用,会自动拉启动新程序。
    

      

  • 相关阅读:
    Linux
    CUDA开发
    Linux C++
    Python
    C++
    模式识别
    Linux
    算法
    算法
    leetcode 数组,链表,跳表
  • 原文地址:https://www.cnblogs.com/guoyabin/p/4430790.html
Copyright © 2011-2022 走看看