I'm trying to get the system time accurate to milliseconds in Windows cmd. I know that it's possible to get centisecond accuracy using:
echo %time%
I've found other questions that are asking the exact same thing but there is no answer that fully answers the question. Here is what I've found so far:
This solution is only good for centisecond accuracy (same as what I described above): Print time in a batch file (milliseconds)
This solution provides a timer solution but not a print current timestamp solution: Print Batch Time in Milliseconds
Any help would be much appreciated.