Skip to content

Instantly share code, notes, and snippets.

@renekreijveld
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save renekreijveld/cbb7045dc37e788512be to your computer and use it in GitHub Desktop.
Save renekreijveld/cbb7045dc37e788512be to your computer and use it in GitHub Desktop.
Create a date-time stamp in Windows batch file
@echo off
for /f "tokens=1-8 delims=.:/-, " %%i in ('echo exit^|cmd /q /k"prompt $D $T"') do (
for /f "tokens=2-4 delims=/-,() skip=1" %%a in ('echo.^|date') do (
set dow=%%i
set mm=%%j
set dd=%%k
set yy=%%l
set hh=%%m
set min=%%n
set sec=%%o
set hsec=%%p
)
)
if %hh%==0 set hh=00
if %hh%==1 set hh=01
if %hh%==2 set hh=02
if %hh%==3 set hh=03
if %hh%==4 set hh=04
if %hh%==5 set hh=05
if %hh%==6 set hh=06
if %hh%==7 set hh=07
if %hh%==8 set hh=08
if %hh%==9 set hh=09
set timeStamp=%yy%%mm%%dd%-%hh%%min%%sec%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment