https://bugs.kde.org/show_bug.cgi?id=393382
--- Comment #9 from Maik Qualmann <metzping...@gmail.com> --- Two things, you already wrote it, but maybe a little more clearly, that a new file is always expected on $OUTPUT. So with script programs that do not create a new file (e.g. changing metadata) you must first copy $INPUT to $OUTPUT with a command appropriate to the operating system and then make the changes to $OUTPUT. On Windows, it's not a Batch script that we're running. I don't know any way how to run a script with cmd.exe. If you know one, we can change it. Powershell can probably do it. We split the digiKam script lines and join them with " && " and start the cmd.exe with the /C option. Before: command1 command2 command3 After: cmd.exe /C command1 && command2 && command3 Therefore, under Windows, the script should not contain any blank lines or comment lines. Maik -- You are receiving this mail because: You are watching all bug changes.