Created
July 28, 2012 16:08
-
-
Save spmallette/3193858 to your computer and use it in GitHub Desktop.
Timing Batch Scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM source: http://www.thesysadminhimself.com/2011/03/calculating-time-difference-in-batch.html | |
FOR /F "skip=1 tokens=1-6" %%A IN ('WMIC Path Win32_LocalTime Get Day^,Hour^,Minute^,Second /Format:table ^| findstr /r "."') DO ( | |
set Milisecond=%time:~9,2% | |
set Day=%%A | |
set Hour=%%B | |
set Minute=%%C | |
set Second=%%D | |
) | |
set /a Start=%Day%*8640000+%Hour%*360000+%Minute%*6000+%Second%*100+%Milisecond% | |
REM put stuff to time here | |
FOR /F "skip=1 tokens=1-6" %%A IN ('WMIC Path Win32_LocalTime Get Day^,Hour^,Minute^,Second /Format:table ^| findstr /r "."') DO ( | |
set Day=%%A | |
set Hour=%%B | |
set Minute=%%C | |
set Second=%%D | |
) | |
set Milisecond=%time:~9,2% | |
set /a End=%Day%*8640000+%Hour%*360000+%Minute%*6000+%Second%*100+%Milisecond% | |
set /a Diff=%End%-%Start% | |
set /a DiffMS=%Diff%%%100 | |
set /a Diff=(%Diff%-%DiffMS%)/100 | |
set /a DiffSec=%Diff%%%60 | |
set /a Diff=(%Diff%-%Diff%%%60)/60 | |
set /a DiffMin=%Diff%%%60 | |
set /a Diff=(%Diff%-%Diff%%%60)/60 | |
set /a DiffHrs=%Diff% | |
:: format with leading zeroes | |
if %DiffMS% LSS 10 set DiffMS=0%DiffMS!% | |
if %DiffSec% LSS 10 set DiffMS=0%DiffSec% | |
if %DiffMin% LSS 10 set DiffMS=0%DiffMin% | |
if %DiffHrs% LSS 10 set DiffMS=0%DiffHrs% | |
echo %DiffHrs%:%DiffMin%:%DiffSec%.%DiffMS% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment