我正在使用 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
请帮忙。
尝试像这样运行它:
c:\plink.exe -l userId -pw psw remote_host C:\goto\test.bat
从一些文档来看,这应该有效:
C:\>c:\plink.exe -l userId -pw psw remote_host C:\goto\test.bat
这对我有用:
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
大写 - 将其更改为您的状态