Display current date and time
Moderator: DosItHelp
Display current date and time
Hi
How to echo current date and time on the same line?
Thanks
How to echo current date and time on the same line?
Thanks
Re: Display current date and time
How about the day too like
Sun 2016-10-30 17:55:42.35 or
Sunday 2016-10-30 17:55:42.35
Sun 2016-10-30 17:55:42.35 or
Sunday 2016-10-30 17:55:42.35
-
- Expert
- Posts: 1166
- Joined: 06 Sep 2013 21:28
- Location: Virginia, United States
Re: Display current date and time
Oh geez, you've got one of those locales where %date% doesn't show the day of the week for some reason.
Re: Display current date and time
yep, I am reading on this right now...
Re: Display current date and time
WMIC should always be available nowadays.
Steffen
Code: Select all
for %%i in ("0=Sun" "1=Mon" "2=Tue" "3=Wed" "4=Thu" "5=Fri" "6=Sat") do set "wd%%~i"
for /f %%i in ('WMIC OS GET LocalDateTime /value') do for /f "tokens=2 delims==" %%j in ("%%i") do set "dt=%%j"
for /f %%i in ('WMIC PATH Win32_LocalTime GET DayOfWeek /value') do for /f "tokens=2 delims==" %%j in ("%%i") do (
call set "dt=%%wd%%j%% %dt:~,4%-%dt:~4,2%-%dt:~6,2% %dt:~8,2%:%dt:~10,2%:%dt:~12,5%")
echo %dt%
Steffen
Re: Display current date and time
Great job Steffen!
Thanks!
Since I am clueless on the FOR usage in batch and of course "regurgitating" is "give a man a fish and you feed him for a day", should you have the time and want to, please explain this code to me in order to "teach a man to fish and you feed him for a lifetime" !
Thanks again
Thanks!
Since I am clueless on the FOR usage in batch and of course "regurgitating" is "give a man a fish and you feed him for a day", should you have the time and want to, please explain this code to me in order to "teach a man to fish and you feed him for a lifetime" !
Thanks again
Re: Display current date and time
I see your point. Did you ever read a tutorial about FOR loops in batch? If not please do this as soon as you have time. Understanding how loops work is the key for writing good code in any language.
Steffen
Steffen
Re: Display current date and time
Any links you propose would be appreciated.
Thanks again
Thanks again
-
- Expert
- Posts: 1166
- Joined: 06 Sep 2013 21:28
- Location: Virginia, United States
Re: Display current date and time
Great!
Take care and thanks again.
Take care and thanks again.