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




Reply With Quote