$ 0 0 I want to make a gui for an invisible cmd prompt. The thext in the cmd should be outputtet. I got the code [ autoit ] popup$cmd = Run("cmd.exe") While 1 $line = StdoutRead($cmd) If @error Then ExitLoop If $line <> "" Then MsgBox(0,"",">"&$line&"<",1) ConsoleWrite(@LF&$line) Else EndIf WEndbut it doesn't work as i want to.