Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

... Running the same batch file using psexec from the slave directly works without a charm.

Let me provide some more information. Jenkins and its slave are in a separate domain than our target machine.

When I run the batch file like this:

"D:\Temp\PsTools\PsExec.exe" \\<targetmachine> -u <targetdomain\targetdomainuser> -p <pwd> -accepteula  "d:\temp\remotescript.bat" arg1 arg2

directly from the slave (Remote Desktop taking over the machine and opening a command prompt) this works perfectly.

When entering it in a windows batch build step in Jenkins there is no visible output and I just see a spinner but nothing happens anymore and the build hangs queueing any other build creating a massive backlog. Apparantly I get a failure audit where my Jenkins user tries to logon to the target machine however I specified a domainuser with adminrights on the targetmachine (a domainuser for the domain of the target machine).

Does anyone have any idea why the user tries to logon with any other credentials than the ones provided and why this works running it from the Jenkins-slave directly?

Or any other way of achieving this (running a batch file on the remote machine) is more than welcome.

share|improve this question

1 Answer

up vote 1 down vote accepted

This is a notorious issue with psexec:

http://forum.sysinternals.com/psexec-always-hangs-when-run-from-java_topic5013.html

Program output lost when passed through PsExec

You can try with xCmd: http://feldkir.ch/xcmd.htm (it will not work against localhost)

share|improve this answer
Localhost is no concern. I had a little trouble on getting the xCmd file due to the false virusalert, but got it running. I need to investigate one small error probably due to passing my arguments. – Guillaume Schuermans Feb 26 at 21:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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