Swent Posted October 7, 2006 Posted October 7, 2006 #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.
Xenobiologist Posted October 7, 2006 Posted October 7, 2006 Hi, what are you trying to do? $var = DriveGetType("C:\") If $var = "Fixed" Then $pid = Run(@ComSpec & " /k ", "", @SW_SHOWNORMAL) Send($pid) Sleep(5000) ProcessClose($pid) EndIf Sleep(3000) Exit So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
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