若想自己手動自訂時間的版友
可以自己改
教學如下:
---------------------------------分隔線--------------------------------------
@echo off
title
mode con cols=30 lines=2
:a
cls
set a=%time%
set hh=17//這行為"小時",想直接指定多少自己在=符號後面打上數值,格式為24HR的
set mm=40//這行為"分",想直接指定多少自己在=符號後面打上數值,數值不得超過60不然無效
set ss=00//這行為"秒",想直接指定多少自己在=符號後面打上數值,數值不得超過60不然無效
set cf=%a:~7,1%
set ff=%a:~6,1%
set b=%date%
set yy=%b:~0,4%
set zz=%b:~5,2%
set dd=%b:~8,2%
set xx=%b:~11,3%
set n=%\n%
color %ff%%cf%
if "%mm%"=="00" echo &cls
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
echo [date] >>TAG.txt
echo.
echo %yy%/%zz%/%dd% >>TAG.txt
echo.
echo %hh%:%mm%:%ss%>>TAG.txt
@echo