Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
for /F "tokens=1-4 delims=/ " %%i in ('date /t') do (
set Day=%%k
set Month=%%j
set Year=%%l
set DATE=%%k/%%j/%%l)

I am try to get the date into the above variables in a batch script, but currently the date comes out as

2011/04/

Any suggestions on how to fix this?

share|improve this question
I get DATE=04/08/2011 - it based on your windows settings isn't it? – Preet Sangha Apr 8 '11 at 11:04

4 Answers

up vote 8 down vote accepted

You don't get what you expected because %DATE% returns the current date using the windows settings for the "short date format". This setting is fully (endlessly) customizable.

One user may configure its system to show the short date as Fri040811; while another user (even in the same system) may choose 08/04/2011. It's a complete nightmare for a BAT programmer.

One possible solution is to use WMIC, instead. WMIC is the WMI command line interface to WMI. WMI Windows Management Instrumentation is the http://en.wikipedia.org/wiki/Windows_Management_Instrumentation

WMIC Path Win32_LocalTime Get Day,Hour,Minute,Month,Second,Year /Format:table

returns the date in a convenient way to directly parse it with a FOR.

Completing the parse and putting the pieces together

 FOR /F "skip=1 tokens=1-6" %%A IN ('WMIC Path Win32_LocalTime Get Day^,Hour^,Minute^,Month^,Second^,Year /Format:table') DO (
    SET /A TODAY=%%F*10000+%%D*100+%%A
 )
share|improve this answer
thanks, this is very useful! – Benoit Jun 10 '11 at 15:40
Alternatively: for /f %%a in ('wmic os get LocalDateTime ^| findstr ^[0-9]') do (set ts=%%a) & set datetime=%ts:~0,8%-%ts:~8,4% (this gets one 20120623-1617 in the Netherlands right now, hence discarding any timezone). – Arjan Jun 23 '12 at 14:18
@Arjan: I got "~0,8ts:~8,4" in AUS with this %date% format in CMD: 27/11/2012 – CAD bloke Nov 26 '12 at 22:59
@PA This works but I get a "missing operand" error on AUS settings (%date% format in CMD: 27/11/2012). it outputs C:--->(SET /A today=2012*10000+11*100+27 ) )---->(SET /A today=*10000+*100+ Missing operand. – CAD bloke Nov 26 '12 at 23:12
This: serverfault.com/questions/227345/… worked well for me. – CAD bloke Nov 26 '12 at 23:27

Feel free to use this any way you want

:: Date in year, day, month format

FOR /f "tokens=2-4 skip=1 delims=(-)" %%G IN ('echo.^|date') DO (
    FOR /f "tokens=2 delims= " %%A IN ('date /t') DO (
        SET v_first=%%G
        SET v_second=%%H
        SET v_third=%%I
        SET v_all=%%A
        )
    )

SET %v_first%=%v_all:~0,2%
SET %v_second%=%v_all:~3,2%
SET %v_third%=%v_all:~6,4%
SET DATE2= %MM%_%DD%_%YY%
ECHO. The date is: %DATE2%
share|improve this answer
Already got something similar. Thanks! – jamesj Jun 11 '12 at 10:37

Couldn't you simply use the following 1 line to create your var (using any var name)?

set ymd=%date:~6,4%/%date:~0,2%/%date:~3,2%

share|improve this answer
It's dependent on the regional settings and format of the %date% output which is variable. It will work fine on a single machine though, as long as nobody plays with the date settings. – foxidrive May 6 at 14:07

This is what I'd use in an XP pro machine and higher. XP Home does not have wmic.

:: timestamp YYYYMMDD_HHMMSS
@echo off
for /f "delims=" %%a in ('wmic OS Get localdatetime  ^| find "."') do set dt=%%a
set dt=%dt:~0,8%_%dt:~8,6%
echo %dt%
pause

and another

:: timestamp YYYY-MM-DD_HH-MM-SS
@echo off
for /f "delims=" %%a in ('wmic OS Get localdatetime  ^| find "."') do set dt=%%a
set dt=%dt:~0,4%-%dt:~4,2%-%dt:~6,2%_%dt:~8,2%-%dt:~10,2%-%dt:~12,2%
echo %dt%
pause
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.