In a DOS batch script, I’m running a single command on a remote (also windows) computer using plink. Formerly, this command was only run on the local machine, and was relying on the return code to determine success. Is there a way to easily get this information back through plink?
Share
That’s not possible with
plink. The current consensus is to have the remote scriptechoits exit code to a log file, then usepscpto transfer the log file to the local machine.See http://fixunix.com/ssh/74235-errorlevel-capturing-plink.html.