vote up -1 vote down star

Hi all.

I need to start a document on a remote computer instead of an executable file, using PSExec.

I tried to provide the file name of a jpg file to psexec associated with the -c command to copy the file, but the message returned for documents (and not executables) is always "The system cannot find the file specified."

Anyone any ideas what the command-line for psexec should be?

flag

44% accept rate

2 Answers

vote up 1 vote down

Pick a program on that other machine that can show the JPEG and execute that, passing to it the path and name to the file you want to show.

As you've noticed, file associations doesn't work with remote execution like that, so you need to invoke the correct program instead.

link|flag
I need the file to be copied to the remote machine. Since psexec copies the executable file instead of my document, how can I do this? – TheAgent Mar 1 at 13:08
Copy it first, if you have remote execution access you should have write access as well. – Lasse V. Karlsen Mar 1 at 15:11
vote up 2 vote down

Try to use the command:

cmd.exe /c START c:\path\to\document.jpg

Document must be on the remote computer, so you have to copy it there by other command before calling psexec.

link|flag

Your Answer

Get an OpenID
or

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