ProcessInfo Puzzle!

  • Thread starter Thread starter Vai2000
  • Start date Start date
V

Vai2000

Hi All, I have an executable which requires user interaction after invoking
the EXE
Usually the interaction is only the password....so only 1 step

How can I call this EXE from my process and pass the password prompt as
well....


TIA
 
Vai2000 said:
Hi All, I have an executable which requires user interaction after invoking
the EXE
Usually the interaction is only the password....so only 1 step

How can I call this EXE from my process and pass the password prompt as
well....
What you would have to do is Redirect StandardInput and StandardOutput.
You would read the StandardOutput stream and when you see your prompt
in the stream, you would then write the correct value to the
StandardInput stream.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top