Can you give me the Example code in C# how i can use this "PSExec"
using System.Diagnostics;
namespace _27387473
{
class Program
{
static void Main(string[] args)
{
Process.Start("psexec.exe", "\\remoteserver -u remoteusername -p remotepassword app_to_run.exe app_args1 app_args2");
}
}
}