vote up 0 vote down star

I have a windows batch command in my hudson build step that is basically:

 xcopy /s *.* \\serverlocation\buildname\

The copy is failing with:

'xcopy' is not recognized as an internal or external command, operable program or batch file.

However, xcopy is usable on the command line (as is copy). What do I need to do to make hudson use xcopy?

Edit: My path is

PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Perforce;C:\Program Files\CVSNT;C:\Program Files\CVSNT\

which is probably why it works from the command line.

flag

1 Answer

vote up 1 vote down check

xcopy is in your system32 directory; make sure that's in your PATH.

link|flag
PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Perforce;C:\Program Files\CVSNT;C:\Program Files\CVSNT\ – mmr Jul 15 at 18:32
Is that the PATH from Hudson, or from the command-line? Just trying to see if I'm barking up the right tree. :-) – Chris Jester-Young Jul 15 at 18:36
good point. I'm going to just put in 'C:\windows\system32\xcopy' instead of 'xcopy' and see if that works... – mmr Jul 15 at 18:41
aaaaannnndddd... that was the problem. Man, I feel sheepish. – mmr Jul 15 at 18:43

Your Answer

Get an OpenID
or

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