0

我维护了一个 sikuli 脚本,它在我的 PC 上运行良好的 GUI 应用程序,比如 PC-A。我还安装了 PsExec。我的 GUI 应用程序安装在 PC-B 上。我需要做的是,运行 sikuli 脚本(在 PC-A 上)以使用 PsExec 作为中介在(PC-B)上执行 GUI 应用程序,它应该在每一行传递我的命令并将结果返回给 PC -A 来自 GUI 应用程序。

SikuliX 脚本(PC-A) ====== PsExec.exe(PC-A) ======= GUI App(PC-B)

问候,巴拉特

4

1 回答 1

0

To run interactively in a specific session of a remote PC you'll need to know the session id on the remote system.

You can then use psexec's -i option to run in that session. From psexec -?

-i Run the program so that it interacts with the desktop of the specified session on the remote system. If no session is specified the process runs in the console session.

于 2015-08-03T14:49:26.880 回答