Can we run an executable file of the client computer from an application hosted in Citrix?
I already tried too many options like PsExec, Process.Start() with Username-Password, etc. But I could not able to find the solution.
In every solution I got Error - "Access is Denied" or "Username or Password is Incorrect".
- ProcessStartInfo startInfo = new ProcessStartInfo();
- startInfo.FileName = "notepad.exe";
- startInfo.Domain = "XXX";
- startInfo.Password = new NetworkCredential("","myPCPassword").SecurePassword;
- startInfo.UserName = "myusername";
- startInfo.UseShellExecute = false;
- Process start = Process.Start(startInfo);
I expect that .exe file would be opened in local machine. but it's not working.