Nicola,

The installer makes use of the standard Windows APIs to read and write INI files (e.g. GetPrivateProfileStringA). The native INI handling (ANSI) Windows APIs can only support ANSI coded files. They do not support UTF-8 encoded files and this is by Windows design! The INI functionality in Windows is only there to provide backward compatibility. The Windows INI file format does not support UTF-8.

Friedrich