Executing EXE

  • Thread starter Thread starter Yoshitha
  • Start date Start date
Y

Yoshitha

Hi
I wrote the following code to run the exe file in my web application

System.Diagnostics.Process.Start("E:\Projects\Encrypt-Decrypt\bin\WindowsApp
lication1.exe")

and it is running successfully in windows 2000 professional , but the same
code is not working in windows server 2003.

can anybody tell me how to solve this problem.

Thanx in advance
 
Yoshitha said:
Hi
I wrote the following code to run the exe file in my web application

System.Diagnostics.Process.Start("E:\Projects\Encrypt-Decrypt\bin\WindowsApp
lication1.exe")

and it is running successfully in windows 2000 professional , but the same
code is not working in windows server 2003.

can anybody tell me how to solve this problem.

Thanx in advance

What error if any are you getting... is the right framework installed?
 
Yoshitha said:
Hi
I wrote the following code to run the exe file in my web application

System.Diagnostics.Process.Start("E:\Projects\Encrypt-Decrypt\bin\WindowsApp
lication1.exe")

and it is running successfully in windows 2000 professional , but the same
code is not working in windows server 2003.

can anybody tell me how to solve this problem.

Thanx in advance

well it shouldn't run.. that's not a valid file path. Either use:

-) \\ instead of \
-) @ sign before inverted commas

i'm surprised that compiles.. that sorta stuff never does for me :(
 
Back
Top