Jump to content

RunWait Issue?


nore
 Share

Recommended Posts

$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]

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...