Because I'd assume it is much faster than wmic or powershell, here's a batch-file with a vbscript wsh helper:
<!-- ::Script Language="Batch"
@For /F %%G In ('%SystemRoot%\System32\cscript.exe //NoLogo "%~f0?.wsf"')Do @Echo(%%G
@Pause&Exit /B
-->
<Job><Script Language="VBScript">
t0 = Timer : t1 = Int(t0) : ms = Int((t0 - t1) * 1000) : s = t1 mod 60
t1 = Int(t1 / 60) : m = t1 mod 60 : h = Int(t1 / 60)
strT = String(2 - Len(h), "0") & h & ":"
strT = strT & String(2 - Len(m), "0") & m & ":"
strT = strT & String(2 - Len(s), "0") & s & "."
strT = strT & String(3 - Len(ms), "0") & ms
WScript.Echo strT</Script></Job>