psexec 支持输入重定向吗?

发布于 2024-10-08 15:36:44 字数 250 浏览 4 评论 0 原文

我试图通过 psexec 控制远程 Python 脚本,它从 stdin 读取命令,但我需要重定向 psexec 的输入,因为 psexec 本身将从另一个程序启动。但是,我没有运气让 psexec 接受重定向输入。它应该起作用吗?

我正在尝试执行的示例,其中 input 是包含远程脚本输入的文件:

psexec \\mymachine python c:\script.py < input

I am trying to control a remote Python script via psexec, which reads commands from stdin, but I need to redirect psexec's input since psexec itself will be launched from another program. However, I have no luck making psexec accept redirected input. Is it supposed to work at all?

An example of what I'm trying to do, where input is a file containing input to the remote script:

psexec \\mymachine python c:\script.py < input

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

む无字情书 2024-10-15 15:36:44

这是我能够完成您所追求的任务的一种方法:

PsExec.exe -d \\\\192.168.1.1 cmd /k "echo list volume | diskpart"

这将传递命令“列出卷”到 diskpart 命令。此外,您还可以尝试使用这样的 cmd,例如:

PsExec.exe -d \\\\192.168.1.1 cmd /k "python c:\script.py

Here's one way I was able to kinda accomplish what you're after:

PsExec.exe -d \\\\192.168.1.1 cmd /k "echo list volume | diskpart"

This would pass the commands "list volume" to the diskpart command. Additionally you can also try using cmd like this for you example:

PsExec.exe -d \\\\192.168.1.1 cmd /k "python c:\script.py < input"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文