PSExec:如何在远程计算机上显示 JPG 文件?
我需要使用 PSExec 在远程计算机上启动文档而不是可执行文件。
我尝试向与 -c 命令关联的 psexec 提供 jpg 文件的文件名来复制该文件,但为文档(而不是可执行文件)返回的消息始终是“系统找不到指定的文件”。
有人知道 psexec 的命令行应该是什么吗?
I need to start a document on a remote computer instead of an executable file, using PSExec.
I tried to provide the file name of a jpg file to psexec associated with the -c command to copy the file, but the message returned for documents (and not executables) is always "The system cannot find the file specified."
Anyone any ideas what the command-line for psexec should be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试使用命令:
文档必须位于远程计算机上,因此在调用 psexec 之前必须通过其他命令将其复制到远程计算机上。
Try to use the command:
Document must be on the remote computer, so you have to copy it there by other command before calling psexec.
在另一台机器上选择一个可以显示 JPEG 的程序并执行该程序,将要显示的文件的路径和名称传递给它。
正如您所注意到的,文件关联不适用于像这样的远程执行,因此您需要调用正确的程序。
Pick a program on that other machine that can show the JPEG and execute that, passing to it the path and name to the file you want to show.
As you've noticed, file associations doesn't work with remote execution like that, so you need to invoke the correct program instead.
为了打开远程程序并且不仅激活其进程,您必须使用 PSEXEC
与 -i(交互模式)一起并且必须定义会话号。
例如:
通常在 Win7 主机上:
为了在此远程 Win 7 主机上激活并打开 notepad.exe,请使用以下语法:
问候,
沙伊夫
[电子邮件受保护]
In order to open a remote program and not only activate its process you have to use PSEXEC
with the -i (Interactive Mode) and MUST define the session number.
For example:
Usually on a Win7 host:
In order to activate and open notepad.exe on this remote Win 7 host use the following syntax:
Regards,
Shai Ziv
[email protected]
这是对我有用的方式:
PS:不要忘记替换 [RemoteComputerName] 和 [MyUserName]
This is the way that worked for me:
P.S.: Don't forget to replace [RemoteComputerName] and [MyUserName]