nore Posted September 15, 2010 Posted September 15, 2010 $foo = RunWait(@ComSpec & " /c get.exe", "", @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD) $output = GetOutput($foo) Func GetOutput($out) $all = "" While 1 $all &= StdoutRead($out) If @error Then Return $all Wend EndFunc $output is empty, why? running get.exe directly from cmd gives the required output, why isn't it given here? is there something wrong ? [running 3.3.6.1]
Mat Posted September 15, 2010 Posted September 15, 2010 Use Run not RunWait to get std AutoIt Project Listing
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now