如何使用Ansible在远程Windows机器上执行exe文件?我使用了原始,脚本和命令模块,但问题是,exe文件在不同的会话中运行,并且无法在远程计算机的桌面上看到应用程序UI。
第二个问题是在执行exe之后,ansible playbook没有向前推进。
我们可以在活动桌面会话中运行exe吗?
答案 0 :(得分:2)
我可以用psexec解决这些问题。
#Creating the credential for the invoke-command.
$strScriptUser = "COMPUTERNAME\USer"
$strPass = "PASSWORD"
$PSS = ConvertTo-SecureString $strPass -AsPlainText -Force
$cred = new-object system.management.automation.PSCredential $strScriptUser,$PSS
#Invoke-Command to call the psexec to start the application.
invoke-command -Computer "." -Scriptblock {
c:\AnsibleTest\ps\psexec.exe -accepteula -d -h -i 1 -u COMPUTERNAME\USER -p PASSWORD PATH_TO_THE_EXE\PROGRAM.EXE
} -Credential $cred
答案 1 :(得分:0)
您可以使用win_psexec模块。
http://docs.ansible.com/ansible/latest/win_psexec_module.html