How do I print the time (in ms) in a Windows batch file?
I want to measure the time that passes between lines in my batch file, but Windows's "time /T" does not print milliseconds.
Is there a tiny 3rd party command line utility that does this perhaps?
echo %time%
won't help because it's evaluated just once and thus prints the same time every time.