• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Have changes been made to the Windows XP CLI recently?

TechnoPro

Golden Member
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.
 
I honestly don't see how that ever worked. Your using the variable %A (and by the for you get %B and %C) but are referencing %a %b %c (notice the case difference)...
 
Originally posted by: bsobel
I honestly don't see how that ever worked. Your using the variable %A (and by the for you get %B and %C) but are referencing %a %b %c (notice the case difference)...

Yup, you got it. My mistake. I recently was cutting and pasting some code around and this is what happens when I am not paying attention to case sensitivity. Thanks!
 
Back
Top