views:

377

answers:

2

Any starting point/ideas for a custom console app which mimics the dos command prompt ? Basically looking for best practices and ideas for where to start Perhaps using powershell which frankly i've not looked at yet !

I know this is a little retro but i've found some limitations in the web app done using asp.net mvc etc. ( few of them such as permission issues reading network files etc. and other downstream issues from there )

essentially i'd like to make this a pluggable app where this app will be able to load different list of commands to be executed

ideally, this would support hyperlinks too where clicking on a hyperlink would execute the related command

+3  A: 

Here's a project you might be interested in: Console

Tim Stewart
Wow! that's cool! (+1)
Paolo Tedesco
that's pretty cool but it's c++i was looking for C# or .net
Kumar
Cool but c++...
Paolo Tedesco
A: 

There are several home-brewed command prompt controls; here's one on codeproject.

Otherwise you might try to pass values and retrieve response from Command Prompt

Paolo Tedesco
thanksbut the codeproject article is rather basic
Kumar