System.Diagnostics.ProcessStartInfo psi = new ProcessStartInfo();
psi.WorkingDirectory = @"RemoteComputerName\C:\WINDOWS\system32";
psi.FileName = "cmd.exe";
Process p = Process.Start(psi);
System.Threading.Thread.Sleep(5000);
but it runs cmd and open notepad at my computer NOT the remote computer.
please any idea and help to fix the issue? and then how to kill a file?
Thank you for any help. :)