As a simple example of working with culture information in PowerShell, here’s how to list Swedish monthnames:
(new-object system.globalization.cultureinfo("sv-SE")).DateTimeFormat.MonthNames
The result is an array:
januari februari mars april maj juni juli augusti september oktober november december
Try doing that in a BAT file… 🙂
/Emil