in reply to Reading console output into a perl

There's one other way of retrieving the output. Use open

open (OUTPUT, "C:\\configInfo.exe |") || die "Couldn't run configInfo.exe - $!\n": while (<OUTPUT>) { # do stuff which each line of OUTPUT... }

Note the pipe after the C:\\configInfo.exe command.

-- vek --