I already have a batch file that does the backup renaming the folder adding the date:
@echo on
for /f "delims=" %%a in ('wmic OS Get localdatetime ^| find "."') do set dt=%%a
set YYYY=%dt:~0,4%
set MM=%dt:~4,2%
set DD=%dt:~6,2%
set HH=%dt:~8,2%
set stamp=001_%YYYY%%MM%%DD%
mkdir %stamp%
cd %stamp%
xcopy V:\DB\001\*.* /S /Y
Now i would like to add a text description to the folder name, chosing it between 3 or 4 different solutions, for example "001_20150309_TEXT1", or "001_20150309_TEXT2" or "001_20150309_TEXT3" Is it possible to add prompt request on what text to add? thanks in advance to all the ones who helps me out