1

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

请帮忙。

4

3 回答 3

2

尝试像这样运行它:

c:\plink.exe -l userId -pw psw remote_host C:\goto\test.bat
于 2010-09-15T19:40:04.417 回答
1

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

C:\>c:\plink.exe -l userId -pw psw remote_host C:\goto\test.bat
于 2010-09-23T17:32:01.803 回答
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

大写 - 将其更改为您的状态

于 2011-08-22T07:59:49.620 回答