Batch file log file creation

hoges

Honorable
Mar 19, 2013
1
0
10,510

assuming you want to use the current date:
for /f "tokens=2-4 delims=/ " %%a in ('date /T') do (
set varDay=%%a
set varMonth=%%b
set varYear=%%c
)
@echo %varYear%%varMonth%%varDay%.log
 

TRENDING THREADS