I use the following code snippet to create folders with the date as the folder name. This used to work:
FOR /F "TOKENS=2-4 DELIMS=/ " %%A IN ('DATE /T') DO (
set mm=%%a
set dd=%%b
set yy=%%c
)
set NEW_DATE=%mm%.%dd%.%yy%
Has CLI functionality changed all of a sudden? Any ideas are very welcome at this point, thanks.
FOR /F "TOKENS=2-4 DELIMS=/ " %%A IN ('DATE /T') DO (
set mm=%%a
set dd=%%b
set yy=%%c
)
set NEW_DATE=%mm%.%dd%.%yy%
Has CLI functionality changed all of a sudden? Any ideas are very welcome at this point, thanks.