I'm trying to use PsExec to start a process on a remote machine. I posted this question on SO, but I realized it's probably better suited here. I also have spent a few hours trying to figure this out, and haven't really gotten anywhere.
Here is one of the questions I've looked at, as well as a couple of forum posts. The second link is the one I'm interested in. One of the posters suggests using net use to see if the credentials I'm trying to use with PsExec work for that, and they do. When I try to run PsExec, I'm running it from an administrator instance of cmd, and I use this command:
PsExec.exe \\[MachineName] -u [domain]\[user] -p [password] cmd
This is unsuccessful, and returns:
Could not start PSEXESVC service on [MachineName]:
Access is denied.
However, when I issued this command in the same instance of cmd:
net use \\[MachineName] /user:[domain]\[user]
I was prompted for a password, to which I entered [password], and it returned:
The command completed successfully.
This seems like all the relevant information to me, and it also seemed that way in the other posts I looked at, but I'm not sure what else to add. I've spent a couple hours trying to figure this out, with no success. I'd appreciate any help, and let me know if you need any other information from me.