We have a project in TFS that has a non-English character (š) in it. When trying to script a few build-related things we've stumbled upon a problem - we can't pass the š letter to the command line tools. Command prompt or what not else messes it up, and the tf.exe utility can't find the specified project.

I've tried different formats for the .bat file (ANSI, UTF-8 with and without BOM) as well as scripting it in JavaScript (which is Unicode inherently) - but no luck. Anybody have an idea how to excecute a program and pass it a Unicode command line?

link|improve this question

61% accept rate
feedback

4 Answers

up vote 34 down vote accepted

Try:

chcp 65001

which will change the code page to UTF-8. Also, you need to use Lucida console fonts.

link|improve this answer
3  
Do you know if there's a way to make this the default? – Annan Nov 14 '11 at 13:55
By me Lucida font stays chosen, but chcp must be typed each time... anyway great thanx for this tip, I didn't even thought it is possible :) – lechlukasz Nov 21 '11 at 15:41
1  
Note there are serious implementation bugs in Windows's code page 65001 support which will break many applications that rely on the C standard library IO methods, so this is very fragile. (Batch files also just stop working in 65001.) Unfortunately UTF-8 is a second-class citizen in Windows. – bobince Dec 29 '11 at 21:51
Upvotes for everyone and accepted this answer because it's the most upvoted one. We moved away from TFS not long after this question was posted, so it's not relevant anymore. I also can't say if it works or not because we don't have a TFS server anymore to test on. – Vilx- Jan 28 at 13:30
Bah M$... I get A device attached to the system is not functioning. when displaying unicode data. – Salman A May 14 at 9:14
feedback

Actually, the trick is that the command prompt actually understands these non-english characters, just can't display them correctly.

When I enter a path in the command prompt that contains some non-english chracters it is displayed as "?? ?????? ?????". When you submit your command (cd "??? ?????? ?????" in my case), everything is working as expected.

link|improve this answer
This is probably a bit dangerous as you could get naming conflict. e.g., if you have two files both which render as "???", and you enter "cd ???" it wouldn't know which to use (or worse would choose an arbitrary one). – John Jun 16 '09 at 13:53
2  
You don't enter ???, you enter the real name it's just being displayed as ???. Think of it as of a password input box. Whatever you enter is displayed as ***, but submitted is the original text. – User Jun 16 '09 at 14:52
feedback

I had same problem (I'm from Czech Republic). I have English installation of windows and I have to work with file on shared drive. Path to this file include Czech specific characters. Solution that works for me is:

In batch file, change charset page

My batch file:

chcp 1250
copy "O:\VEŘEJNÉ\ŽŽŽŽŽŽ\Ž.xls" c:\temp

Batch file has to be saved in CP 1250!

note that console will not show characters correctly but it will understand them ...

link|improve this answer
feedback

This is a cross-post of my previous response to another thread on similar topic here: Passing command line unicode argument to Java code.

Unfortunately the standard Java launcher has a known and long-living bug in handling Unicode command line arguments on Windows. Maybe on some other platforms too. For Java 7 update 1 it was still in place.

If you feel good at programming in C/C++, you may try writing your own launcher. Some specialized launcher might be not a big deal... Just see the initial example at JNI Invocation API page.

Another possibility is to use a combination of a Java wrapper and a temporary file for passing Unicode parameters to a Java app. See my blog Java, Xalan, Unicode command line arguments... for more comments and the wrapper code.

link|improve this answer
TFS is not written in Java. But I guess it's good to know and relevant, so have an upvote! :) – Vilx- Jan 28 at 13:28
Wow! Sorry... Looks like I was too trustful to linked/related references here, and maybe should read slower :) Thanks for the upvote anyway :) – s-n-ushakov Jan 31 at 12:56
feedback

Your Answer

 
or
required, but never shown

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