运行 TFS 2015 中远程计算机上的 MSI
Run an MSI on a remote machine in TFS 2015
我有一个 TFS 2015 版本,它将在上述构建期间生成的 MSI 复制到远程机器(即不是构建 agent/build 服务器)。
如何通过 TFS 在远程机器上 运行 获取 MSI?
如果构建帐户可以访问远程计算机,您可能会通过 psexec 远程执行 msi。
PsExec.exe \RemoteComputer -d -s cmd /c "msiexec.exe /I "drive:\path\to\yourmsi.msi" /quiet /norestart"
完整示例可在此处找到:https://www.itdroplets.com/run-msi-psexec/
我有一个 TFS 2015 版本,它将在上述构建期间生成的 MSI 复制到远程机器(即不是构建 agent/build 服务器)。
如何通过 TFS 在远程机器上 运行 获取 MSI?
如果构建帐户可以访问远程计算机,您可能会通过 psexec 远程执行 msi。
PsExec.exe \RemoteComputer -d -s cmd /c "msiexec.exe /I "drive:\path\to\yourmsi.msi" /quiet /norestart"
完整示例可在此处找到:https://www.itdroplets.com/run-msi-psexec/