使用plink连接unix服务器以通过批处理文件运行脚本

时间:2014-05-29 13:20:28

标签: unix batch-file windows-8 putty

我已经在我的桌面上创建了一个批处理文件(script.bat),其中包含以下脚本

@echo off
set /p id="Enter Unix Login ID: " %=% 
set /p pwd="Enter Password: " %=% 
cls
del jobInfo_error.txt

FOR /F "tokens=* delims=\n" %%G IN (Apps_list.txt) DO ( plink -l %id% -pw %pwd% "%%G "/export/home/user/collection_fail.ksh " 2>>JobInfo_error.txt )
GOTO :eof

start notepad JobInfo_error.txt

此处,Apps_list.txt包含服务器列表。类似的东西:

server1
server2
...
...
etc

我使用Windows XP时工作正常。我最近迁移到Windows 8,现在我无法运行它。

错误是:

Plink error: Remote command failed
(Exit code 1)

0 个答案:

没有答案