bigjoe11a
June 11th, 2009, 11:20 AM
Does any one know of a development tools that will let me create Command Shells or loadable Modules.
|
Click to See Complete Forum and Search --> : Command Shell bigjoe11a June 11th, 2009, 11:20 AM Does any one know of a development tools that will let me create Command Shells or loadable Modules. Teranoz June 12th, 2009, 06:32 AM What do you mean exactly, do you want a tool to do a command shell from C# ? in that case you might need something in this direction: System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; proc.EnableRaisingEvents = false; proc.StartInfo.CreateNoWindow = true; proc.StartInfo.UseShellExecute = false; proc.StartInfo.FileName = "pathtoexecutable\\yourexecutablename.exe"; proc.StartInfo.RedirectStandardOutput = true; bigjoe11a June 12th, 2009, 06:58 AM From what I been Reading Yes. Its a tool that runs when I want it too. That runs scripts. Like a Loadable Modules or a Command Shell. Its for a server I made and after I made it. I have to find an option that I can add to let me or other people log in to the server. Like the old telnet use to be. Well it will give me a choice of menus and so on. Where I can transfer files and lots of other things. Teranoz June 12th, 2009, 07:54 AM You mean to log in and do anything you want ? Maybe in that case you should use remote desktop bigjoe11a June 12th, 2009, 09:38 AM well no. a desktop is fine for some people. i wanted some thing different where people could log in and post messages and transfer files. oh i think its called ascii. or ansii codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |