我使用以下 Python 脚本远程运行可执行文件,并且可以通过 stdin
发送输入数据。
from pypsexec.client import Client
c = Client("my_ip", username="myusername", password="mypassword")
c.connect()
try:
c.create_service()
stdin b'first-input\nsecond-input\n'
stdout, stderr, rc = c.run_executable("app.exe", stdin=stdin)
print(stdout)
finally:
c.remove_service()
c.disconnect()
我需要在执行我的应用程序后发送我的数据。