Instead of spawning a separate command window as a child window, is it possible to host a command console as a child control of a form?
Example:

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is not possible to display the actual console window inside a form, but you can redirect the output of the console to your app and display it in your own control.
Have a look at this question which has some examples. Also on MSDN I found this and this.