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 p
To time task in CMD is as simple as
echo %TIME% && your_command && cmd /v:on /c echo !TIME!