Can someone poitn me to a way of adding a timer to a dos batch file i need to track the time my batch runs form start. Many thanks J
feedback
|
|
Refactored the code to calculate the elapsed time:
Reusable code:
Calling code:
Note the "1"-prefix to avoid interpretation errors of zero-padded values as octal values (08 and 09), and the correction with the appropriate constant. As this might be confusing to understand the core calculation, an alternative to the one-line
| ||||
|
feedback
|
|
As far as I know there is no explicit 'timer' command you can use in batch files - however there is a fairly simple solution. At the top of your batch file record the current time (start time) at the end of the batch file record the current time (end time) and then compare the two. Something like this should do it (it does seem overly complicated but it handles most quirks of time):
Alternatively #1 : The Windows Server 2k3 resource kit includes timeit.exe. You can use this to display various performance stats for your script. Alternatively #2 : You could go much simpler than the script posted above and do this:
However, this won't give you execution time in seconds. | ||||
|
feedback
|
|
You can try this one(Shorter..)
| |||
|
feedback
|
|
Structure your program like this:
Here is the code for the TIMER.BAT program. Save it as a seperate file somewhere in your path.
| |||
|
feedback
|
|
A minimalistic version with elapsed time in seconds.
| |||
|
feedback
|