Project moving forwards, I can see why creating .bat files to do things can become addictive! I can now save somefile.txt at regular intervals, I then rename somefile.txt by
problem in %time:~0,2% can't set to 24 hrs format, ended with space(1-9), instead of 0(1-9)
%time:~0,2%
go around with:
set HR=%time:~0,2%
HR=%time:~0,2%
set HR=%Hr: =0% (replace space with 0 if any )
HR=%Hr: =0% (replace space with 0 if any )
then replace %time:~0,2% with %HR%
%HR%
good luck