This file contains hidden or 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
@echo off | |
:: Get start timestamp | |
set _time=%time% | |
set _hours=100%_time:~0,2%%%100 | |
set _min=100%_time:~3,2%%%100 | |
set _sec=100%_time:~6,2%%%100 | |
set _cs=%_time:~9,2% | |
set /a _started=_hours*60*60*100+_min*60*100+_sec*100+_cs |
OlderNewer