Hi everyone,
I´m trying to launch a remote process on another PC, and for that purpose have to make use of the Process class. If I run the code below from a VB .NET Windows application there is no problem, it goes well, but if I put it into a webmethod, I get an exception ("Couldn't get process information from remote machine.", inner exception: "Access denied", even if I try to monitor local processes!
Dim ap() As Process
ap = Process.GetProcessesByName("notepad", "MyLocalHost"
Does anyone which could be the reason? I suspect that it concerns IIS permissions, but I haven´t had any luck until now. Thanks
I´m trying to launch a remote process on another PC, and for that purpose have to make use of the Process class. If I run the code below from a VB .NET Windows application there is no problem, it goes well, but if I put it into a webmethod, I get an exception ("Couldn't get process information from remote machine.", inner exception: "Access denied", even if I try to monitor local processes!
Dim ap() As Process
ap = Process.GetProcessesByName("notepad", "MyLocalHost"
Does anyone which could be the reason? I suspect that it concerns IIS permissions, but I haven´t had any luck until now. Thanks