i'm using the export script to modify timestamps from here:
(for readers: this sets file modification dates according to a value from a mp3tag tag)
works as expected most of the time.
But as the export script (needs?) to run with ANSI if have problems with files and paths which have special characters. Those files were of course not found when i execute the generated vb script.
I've tried to convert the vb script with notepad++ to utf-8, but this doesn't cut it.
i also didn't get it when BOM is disabled. But now i get "file not found" (the ones created through this export.)
Unfortunately the line number for the error is not the file which isn't found but instead the line of the function which should set it:
Set objFile = objFSO.GetFile(strMp3tagPath)
but doesn't matter, i've checked it, it errors out on every file, so here one for example:
\Adam Bałdych & Helge Lien Trio\Bridges.flac
look at the "l" in "Baldych" this is the culprit it guess....
i can cd to the folder/file within a dos prompt. Dunno why the script errors out.
solved it. In another forum i've found the info, that vb scripts cannot run with utf-8 correctly. It needs to be utf-16.
This solved it!
Now running fine.