Link to home
Start Free TrialLog in
Avatar of CJSantora
CJSantora

asked on

Shell command in c#

I am trying to use a shell command in c# to call a program which is installed on the server and I found an example in the Help files but it is throwing all sorts of errors, can someone give me some advise on how to do this, I previously did it in VB and it worked well.

thanks in Advance
CJSantora
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

you have to use Process.Start
I think its System.Diagnostics.Process.Start(...)

ASKER CERTIFIED SOLUTION
Avatar of jatinderalagh
jatinderalagh
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of CJSantora
CJSantora

ASKER

Thank You for your help jatinderalagh