vote up 1 vote down star

I'm trying to run various commands using psexec.exe from sysinternals, what I need is a simple script to read the output of those commands.

For example if everything went Ok, then it returns a 0. If something went wrong, then It will spit out an error code.

Any ideas?

flag

2 Answers

vote up 1 vote down check

In PowerShell, you would use the $LastExitCode variable to test if psexec succeeded or not e.g.:

$results = psexec <some command on remote system>
if ($LastExitCode -ne 0) {
    throw "PSExec failed with error code $LastExitCode"
}
return 0
link|flag
vote up 1 vote down

In a batch file, you use the %ERRORLEVEL% variable, or the IF ERRORLEVEL n command. For example:

psexec \\host -i findstr.exe "test" c:\testfile
if errorlevel 1 (
  echo A problem occurred
)

IF ERRORLEVEL checks whether the return value is the same or higher than the number you specify.

This is not the same as capturing the output of the command though. If you actually want the output, you need to include redirection to an output file on the command line:

psexec \\host -i cmd.exe /c findstr "test" c:\testfile ^> c:\output.txt

The ^ is necessary to escape the > character, or the redirection would happen locally instead of on the remote machine. The cmd.exe is necessary, because redirection is handled by cmd.

link|flag
%errorlevel% is only a pseudo-variable, expanded on the fly by the shell. Just as %time%, %random% and others. – Johannes Rössel Nov 5 at 22:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.