Maybe you can create hardlink with ANSI name for files in trouble.
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/f
sutil_hardlink.mspx?mfr=true
> They are the same. The same language version of Visual Studio 2005 was
> installed onto it and the same default language was left unchanged as
[quoted text clipped - 36 lines]
>>> one
>>> to the feedback centre.
It doesn't look that way. According to the page you linked, the Fsutil
command can create a hard link, but it doesn't get to say if the new name
will be stored in NTFS structures as Unicode or ANSI. In my experience NTFS
volumes only contain names stored in Unicode.
Also, regardless of how a file system stores filenames, ANSI APIs will use
ANSI strings while interacting with the application and Unicode APIs will
use Unicode strings while interacting with the application. For example in
either Windows XP or Windows 98, CreateFileA will take a filename from the
application in ANSI, but on a VFAT volume it would write the usual mixture
of OEM and Unicode (or if the filename fits in 8.3 then it will write OEM
only). For example in either Windows XP or Windows 98 + MSLU, CreateFileW
will take a filename from the application in Unicode, but on a VFAT volume
it would write the usual mixture of OEM and Unicode (or if the filename fits
in 8.3 then it will write OEM only).
Therefore even if Partition Magic can change my partition from NTFS to VFAT,
Visual Studio 2005 will still be calling the same APIs that it was already
calling, and if Visual Studio 2005 gets confused by its own Unicode strings
then it will not be changed by this.
> Maybe you can create hardlink with ANSI name for files in trouble.
> http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/f
sutil_hardlink.mspx?mfr=true
[quoted text clipped - 40 lines]
>>>> one
>>>> to the feedback centre.