Pergunta

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.

Foi útil?

Solução

Try running it like this:

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

Outras dicas

Judging by some documentation, this should work:

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

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top