Hello, I have built a batch file that when opened adds current date and time to an external text file with the commands: @echo off echo %date% %time% >> flexiLog.txt Every time the batch runs a new line containg date and time is added to the text file as dd/mm/yyyy hh:mm:ss. It works fine. However, ...