PLEASE help me!
how can i do this in WinPE? what command should i use?

http://images.thetechguide.com/forum/public/style_emoticons/<#EMO_DIR#>/huh.gif\' class=\'bbc_emoticon\' alt=\':huh:\' />
:FORMAT
cls
echo FORMAT MENU
echo -----------
echo.
echo 1. Format Disk C:\
echo 2. Format Disk D:\
echo 3. Format Floppy B:\
echo Q to Main MENU
echo R to Restart
echo.
echo.
choice /c:123QR /t:Q,30
if errorlevel==5 goto restart
if errorlevel==4 goto menu
if errorlevel==3 goto buraB
if errorlevel==2 goto buraD
if errorlevel==1 goto buraC
goto quit
:buraB
cls
echo FLOPPY
echo ------
echo.
echo WARNING ALL exiting data on Floppy B:
echo will be DELETED!
echo S to make it BOOTABLE (NO FORMAT)
echo R to Restart
echo.
echo.
choice /c:YNFSR /T:N,30 /N Are you SURE?(Y,N)
if errorlevel==4 goto restart
if errorlevel==3 goto sysB
if errorlevel==2 goto FORMAT
if errorlevel==1 goto formB
goto quit
:formB
format b: /v:tang_NA /autotest /q
format b: /v:tang_NA /autotest /q
goto restart
goto quit
:sysB
cls
echo.
choice /c:YN /T:N,30 /N Bootable Floopy ?(Y,N)
if errorlevel==2 goto buraB
if errorlevel==1 goto bootB
goto quit
:bootB
label b: tang na
sys a: b:
B:
copy a:\oakcdrom.sys
copy a:\himem.sys
copy a:\mscdex.exe
copy a:\c
ren c config.sys
copy a:\a
ren a autoexec.bat
goto restart
goto quit
:buraC
cls
echo DRIVE C:
echo --------
echo.
echo WARNING ALL exiting data on non-removable drive C:
echo will be DELETED!
echo S to make it BOOTABLE (NO FORMAT)
echo R to Restart
echo.
echo.
choice /c:YNSR /T:N,30 /N Are you SURE?(Y,N)
if errorlevel==4 goto restart
if errorlevel==3 goto sysC
if errorlevel==2 goto FORMAT
if errorlevel==1 goto formC
goto quit
:sysC
cls
echo.
choice /c:YN /T:N,30 /N Bootable Drive C:\ ?(Y,N)
if errorlevel==2 goto buraC
if errorlevel==1 goto bootC
goto quit
:bootC
sys a: c:
C:
copy a:\oakcdrom.sys
copy a:\himem.sys
copy a:\mscdex.exe
copy a:\c
ren c config.sys
copy a:\a
ren a autoexec.bat
goto restart
goto quit
:formC
format c: /v:WIN_FILES /autotest
dell /y d:\_restore
dell /y d:\system~1
dell /y d:\recycled
label c: WIN FILES
goto restart
goto quit
:buraD
cls
echo DRIVE D:
echo --------
echo.
echo WARNING ALL exiting data on non-removable drive D:
echo will be DELETED!
echo R to Restart
echo.
echo.
choice /c:YNR /T:N,30 /N Are you SURE?(Y,N)
if errorlevel==3 goto restart
if errorlevel==2 goto FORMAT
if errorlevel==1 goto formD
goto quit
:formD
format d: /v:OTHER_FILES /autotest
dell /y c:\_restore
dell /y c:\system~1
label d: OTHER FILES
goto restart
goto quit