question

PadmaKuruganti-9867 avatar image
0 Votes"
PadmaKuruganti-9867 asked

using psexec with cmdkey to store credentials is not working with latest psexec

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();

windows-sysinternals-pstools
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

0 Answers