Search Tools Links Login

Retrieve System Time within a Batch File


I've shown you previously how to get the date value from the system in a batch file. You can also grab the time in a similar fashion.

Coupled with the script in the other post, this can be used (for example) to find files that were processed in a certain hour of a particular day. Or, perhaps you could use a bit more processing to say, schedule a task for the current time, one day later. Lots of different possibilities.

Here is the code, by request. As usual, if you have any questions, please feel free to leave it in the comments, or over in the forums.

@echo off

REM ***
REM *** Get Current Time, store in Now. Then use
REM *** string operations to grab Hours, Minutes,
REM *** and seconds, storing each in a variable
REM ***

SET Now=%Time: =0%
SET HH=%Now:~0,2%
SET MM=%Now:~3,2%
SET SS=%Now:~6,2%

REM ***
REM *** Display the output
REM ***

ECHO. Current time = %Now%
ECHO. Hours = %HH%
Echo. Minutes = %MM%
Echo. Seconds = %SS%

About this post

Posted: 2015-07-16
By: dwirch
Viewed: 3,136 times

Categories

Windows Commandline

Scripting

Windows

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.