I'm trying to find a way to start a program on a remote computer (in a domain environment, so I know all the credentials) without any third-party software like PSExec.
Now the problem is, that it should run interactively! (And in the best case, it should run in the current logged-in user context) I know WMI, and I know that you can start a process with WMI but it's not interactive. (You can start an interactive process with a scheduled task but then it runs as a system process and has system privileges(?))
Now lets say I want to write a C# application for the IT technicians to supervise the systems, do you have any idea which technique can be used to allow the IT technicians to start programs remotely without installing software?
Or, in other words, is there something else other than WMI-scheduled processes?