Sysinternals
Advanced system utilities to manage, troubleshoot, and diagnose Windows and Linux systems and applications.
1,190 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am using psexec -s cmdkey to store user credentials. This was working with 1.94 version of psexec and is not working with the latest version 2.34.
I want to know what are the new changes in the psexec? It looks like security related. Here is how it is invoked in my app..
Process procesCred = new Process();
procesCred.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
procesCred.StartInfo.FileName = "cmd.exe";
procesCred.StartInfo.Arguments = CommandLineutil; //psexec .......
procesCred.StartInfo.WorkingDirectory = psexecPath;
procesCred.Start();