Welcome to the CH forums.
The following script
might do what you want, you will have to modify the drive letter for the cdrom and source and destination paths to suit your purpose.
The script is totally untested...
@echo off
cls
for /f "tokens=1-6" %%A in ('vol c:') do (
set vol=%%F & goto rumble
)
:rumble
if exist path\%vol% (
echo Destination folder %vol% already exists... & goto newname
) else (
md path\%vol%
copy "c:\*.*" "path\%vol%\"
)
cls
exit/b
:newname
set /p vol=Enter new name for destination folder:
goto rumble
Good luck