Ansible 运行 远程 exe 文件

Ansible run remote exe file

如何使用 Ansible 在远程 Windows 机器上执行 exe 文件?我使用了 raw、script 和 command 模块,但问题是,exe 文件 运行ning 在不同的会话中,无法在远程计算机的桌面上看到应用程序 UI。

第二个问题是 ansible playbook 在 exe 执行后没有继续运行。

我们可以 运行 活动桌面会话中的 exe 吗?

我可以用 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

您可以为此使用 win_psexec 模块。

http://docs.ansible.com/ansible/latest/win_psexec_module.html