Όντως είναι ένα πρόβλημα αλλά η microsoft έδωσε ένα workaround
εδώΑντιγράφω:
WORKAROUND
loadTOCNode(1, 'workaround');To work around this problem for VBScript, use the
SetLocale function to set the language locale that you want before you use
VBScript built-ins.
For example, the following script sets the
language locale to English (United Kingdom) and then uses the VBScript
built-ins.
SetLocale(2057)
Wscript.Echo "Date is:" & DateValue(Now)
Wscript.Echo FormatCurrency(123.45)
Manos