#include <Constants.au3>
$var = DriveGetType( "C:\" )
If $var = "Fixed" Then
$pid = Run(@ComSpec & " /k ", "", @SW_SHOWNORMAL, $STDIN_CHILD)
StdinWrite($pid, "test")
Sleep(5000)
ProcessWaitClose($pid)
EndIf
Sleep (3000)
Exit
ok whats wrong with this.. he dont Write the "test"
because the CMD screen is really weird.. if i remove $STDIN_CHILD then its all okay then i can type problem then is that -- StdinWrite dont work anymore
Help Please.