zoukankan      html  css  js  c++  java
  • 通过psexec实现远程安装软件包

    1.在管理机上下载和安装psexec

    https://docs.microsoft.com/en-us/sysinternals/downloads/psexec

    2.在管理机上编写bat脚本,存放在管理机的(c:inssm.bat); 客户端通过该脚本来安装软件包

    @echo off
    net use x:  \10.97.xx.241Share /user:username pwd
    x:
    
    REM “Replace your codes starts from here”
    Ec2Install.exe /sp- /silent /norestart
    REM “replace your codes end of here.”
    if %ERRORLEVEL% NEQ 0 goto failed
    echo "SSM agent updated DONE!"
    
    cd ..
    echo %computername% %date% %time% >> ComputerList.txt
    echo "Updating of SSM agent succeeded. "
    goto end
    
    :faile
    echo $%computername% %date% %time% >> ComputerList.txt
    echo "Updating of SSM agent failed. "
    
    :end
    c:
    net use x: /delete
    

    3. 在管理机上通过psexec把bat脚本copy到远端机器,并且通过脚本实现软件包的安装

    PS C:PSTools> .PsExec.exe \10.xx.xx.81 -u admin -p "password" -c -w c:/ "C:inssm.bat"
    

    Refer:

    https://blog.csdn.net/cneducation/article/details/3997166

    https://blog.csdn.net/Miss_Easy/article/details/47780797

      

      

  • 相关阅读:
    倚天
    第5課 森さんは7時に起きます。
    第1課 李さんは中国人です
    一个整体的规划
    こんにちは
    原始凭证
    第3課 ここはデパートです
    ERP术语
    第2課 これはほんです
    vc 问题总结
  • 原文地址:https://www.cnblogs.com/oskb/p/9661364.html
Copyright © 2011-2022 走看看