Hi! Can I launch an exe from a WebService? I've tried with Shell and with the process class:
VB Code:
  1. Shell(comando, AppWinStyle.NormalFocus)
and
VB Code:
  1. Dim pro As New Process
  2. pro.StartInfo.FileName = "C:\windows\calc.exe"
  3. pro.Start()
The process "calc" exist in the Task Manager->process but nothing else. I cann't end the process (Access denied).
Any Idea?
Thanks