通过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.241\Share /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

  

  

猜你喜欢

转载自www.cnblogs.com/oskb/p/9661364.html