The WindowsName.table file is found in your WebObjects Frameworks directory, under:
Foundation.framework/Resources/TimeZoneInfo/WindowsName.table
This file is a serialized plist, so you will need to deserialize it before editing. To preserve the Unicode file format, only use TextEdit to modify this file.
1. In a Bourne shell, change to the directory containing the WindowsName.table file and enter the following commands:
cp WindowsName.table WindowsName.table.orig
pl -input WindowsName.table > MyWorkFile
rm WindowsName.table
2. Next, use TextEdit to change the following lines in MyWorkFile:
3. Finally, use the following commands to reserialize the file:
pl -output WindowsName.table < MyWorkFile
rm MyWorkFile
Modifying the WindowsName.table file under OPENSTEP Enterprise 4.2
The steps needed to modify the file are the same as for WebObjects, except that you do not need to serialize or reserialize the file. Using TextEdit, make the changes to the WindowsName.table file listed under Step 2 for WebObjects, above. Apple recommends that you make these changes on a copy of the file rather than the original file; however, you do not need to use the 'pl' command to deserialize and reserialize the copy first. To preserve the Unicode file format, only use TextEdit to modify this file.