In my Web application I need to open an Autodesk inventor exe on the server. I tried some thing but it is not working while hosting in IIS. Here is my code:
Dim info = New System.Diagnostics.ProcessStartInfo()
info.FileName = "C:\Program Files\Autodesk\Inventor 2013\Bin\Inventor.exe"
info.UseShellExecute = True
Dim process = New System.Diagnostics.Process()
process.StartInfo = info
process.Start()
What is the problem. anyone have any idea?