vote up 0 vote down star
1

Hi everyone,

I can't get PSExec to work. It keeps copying my installer into system32 (where it won't launch). Does anyone know how to copy from the local to the remote computer to a directory that isn't system32? My psexec command line is

psexec \000.00.00.000 -f -u DOMAIN\meuser -p testpwd -c ..\Installer\test.exe /S

Any help would be greatly appreciated.

EDIT: It won't launch because I don't have full administrative rights on the computer. It will launch from other directories

flag

59% accept rate

4 Answers

vote up 1 vote down check

Have you tried:

net use G: \\remotecomputer\droppoint mypassword /user:myuser@mydomain
xcopy installer G:
link|flag
Its not ideal, but it looks like that will work just fine. Thanks for the help. – Steve Feb 11 at 0:58
vote up 1 vote down

Can you XCOPY the installer to a certain place on the remote PC and then PSExec the installer? PSExec shouldn't actually have to copy anything... Let me know if I'm missing something.

link|flag
Hi, we can't use xcopy because we can't always be sure we'll have permissions with windows authentication. With psexec, we can specify a username and password. – Steve Feb 10 at 22:32
vote up 1 vote down

If you don't have full administrative rights on the computer, and are trying to psexec, I question your motives. Can you explain what you are really doing? Who owns the machine?

link|flag
Hi, its an RD machine where I work. We're trying to push out a deployment to several machines instead of installing it by hand. I am one step below the full administrator. I can install anything I want, but it gets tedious over several boxes. – Steve Feb 10 at 22:17
vote up 1 vote down

You need to have admin rights on the target as part of psexec starts up a windows service on the target, and you need admin rights to be able to do that.

psexec copies a psexecsvc file to the admin share and then using remote management starts up a service using that file. It opens up named pipes and uses that for further communication. When it's finished it tidies up after itself.

link|flag
I can start up the service just fine, I just can't execute the installer from the window folder. If I move it up to the C drive, psexec runs the installer just fine. Thanks for the help. – Steve Feb 17 at 19:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.