执行 plink(putty) 命令时出现问题

发布于 2024-09-18 23:54:48 字数 324 浏览 9 评论 0原文

我正在使用 Plink 执行远程命令:

当从 cmd 提示符在单行中使用此命令时,它不起作用:

C:\>c:\plink.exe -l userId -pw psw -m C:\goto\test.bat remote_host

它说无法打开命令文件“C:\goto\test.bat”

但以下有效:

C:\>c:\plink.exe -l userId -pw psw remote_host
C:\>C:\goto\test.bat 

请帮忙。

I am using Plink to execute remote command:

When using this from cmd prompt in single line it doesnot work:

C:\>c:\plink.exe -l userId -pw psw -m C:\goto\test.bat remote_host

It says unable to open command file "C:\goto\test.bat"

But The following works:

C:\>c:\plink.exe -l userId -pw psw remote_host
C:\>C:\goto\test.bat 

Please help.

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

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

发布评论

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

评论(3

腻橙味 2024-09-25 23:54:48

尝试像这样运行它:

c:\plink.exe -l userId -pw psw remote_host C:\goto\test.bat

Try running it like this:

c:\plink.exe -l userId -pw psw remote_host C:\goto\test.bat
凉薄对峙 2024-09-25 23:54:48

根据一些文档来看,这应该有效:

C:\>c:\plink.exe -l userId -pw psw remote_host C:\goto\test.bat

Judging by some documentation, this should work:

C:\>c:\plink.exe -l userId -pw psw remote_host C:\goto\test.bat
梦途 2024-09-25 23:54:48

这对我有用:

Call \\LocalServerName\plink.exe -pw PASSWORD -m D:\FOLDER\FILE.exe USER@REMOTESERVER

或者如果是本地计算机:

Call c:\Folder\plink.exe -pw PASSWORD -m D:\FOLDER\FILE.exe USER@REMOTESERVER

Caps - 将其更改为您的州

This has worked for me:

Call \\LocalServerName\plink.exe -pw PASSWORD -m D:\FOLDER\FILE.exe USER@REMOTESERVER

Or if its a local computer:

Call c:\Folder\plink.exe -pw PASSWORD -m D:\FOLDER\FILE.exe USER@REMOTESERVER

Caps - Change it to your state

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