执行plink(putty)命令的问题

时间:2010-09-15 19:16:45

标签: putty plink

我正在使用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 

请帮忙。

3 个答案:

答案 0 :(得分:2)

尝试像这样运行:

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

答案 1 :(得分:1)

根据some documentation判断,这应该有效:

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

答案 2 :(得分:1)

这对我有用:

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

上限 - 将其更改为您的状态