views:

404

answers:

1

Hello.

I have a batch file named a.bat on a winserver2008 Desktop.

That batch file only write the SessionID (from environment variable) to a local eventlog.

I want to execute it remotely using cmd (otherwise the SessionName doesn't appear).

so I have tried

c:\PsTools\psexec.exe \\<Server> -u test2 -p <Password> -i 2 cmd "c:\Users\test-2\Desktop\a"

or

c:\PsTools\psexec.exe \\<server> -u test2 -p <Password> -i 2 "cmd \"c:\Users\test-2\Desktop\a\"";exit

all of these just open a terminal on the remote machine but don't execute the batch.

Any ides?

Best Regards,

+1  A: 

Use a /c on the command line after cmd.

So, your first line would look like:

c:\PsTools\psexec.exe \\<Server> -u test2 -p <Password> -i 2 cmd /c "c:\Users\test-2\Desktop\a"
Michael Todd
I'll try that outthough my problem wasn't terminating the remote process but executng this command specific via cmd (and not "directly").