Thanks for your time on that...
however i have an easier way.. utilizing the diskpart as on the last post..
i could get that script to work as it was shown...
D: at 20000mb and rest e: ...
that worked great for one large partition..
now if you go into the raid controller and create ONE large raid 5... you then could use the script to chop it up and it would work..
made it a bit tougher since we use vd and will keep that portion..
Also i couldnt get it to work as one large script.. not sure why.. so i broke it apart..
jobs have to run in order..
1. change cdrom to z
2. remove virtual cdrom letter
3. remove removable device letter
4. create d
5. create e
------------cdrom to z
REM Change CD-ROM to Z:
set TEMPFILE=%temp%\create_z.bat
echo SELECT Volume 3 > %TEMPFILE%
echo Assign Letter=Z >> %TEMPFILE%
echo EXIT >> %TEMPFILE%
::Create the Partitions
diskpart /S %TEMPFILE%
:

elete the temporary file
del /Q %TEMPFILE%
-----------remove virtual cdrom letter
REM Remove Virtual CD-ROM drive letter
set TEMPFILE=%temp%\create_4.bat
echo SELECT Volume 4 > %TEMPFILE%
echo Remove Letter=E >> %TEMPFILE%
echo EXIT >> %TEMPFILE%
::Create the Partitions
diskpart /S %TEMPFILE%
:

elete the temporary file
del /Q %TEMPFILE%
----------remove removable letter
REM Remove Removable Device Drive Letter
Set TEMPFILE=%temp%\create_4.bat
echo SELECT Volume 0 > %TEMPFILE%
echo Remove Letter=F>> %TEMPFILE%
echo EXIT >> %TEMPFILE%
::Create the Partitions
diskpart /S %TEMPFILE%
:

elete the temporary file
del /Q %TEMPFILE%
----------create d
REM Create Partition D:
set TEMPFILE=%temp%\create_D.bat
cho SELECT DISK 1 > %TEMPFILE%
echo CREATE PARTITION PRIMARY >> %TEMPFILE%
echo ASSIGN LETTER=D >> %TEMPFILE%
echo EXIT >> %TEMPFILE%
::Create the Partitions
diskpart /S %TEMPFILE%
::Format the partitions as NTFS
echo y | format D: /FS:NTFS /X
:

elete the temporary file
del /Q %TEMPFILE%
----------create e
REM Create Partition E:
set TEMPFILE=%temp%\create_E.bat
echo SELECT DISK 2 > %TEMPFILE%
echo CREATE PARTITION PRIMARY >> %TEMPFILE%
echo ASSIGN LETTER=E >> %TEMPFILE%
echo EXIT >> %TEMPFILE%
::Create the Partitions
diskpart /S %TEMPFILE%
::Format the partitions as NTFS
echo y | format E: /FS:NTFS /X
:

elete the temporary file
del /Q %TEMPFILE%
im rebuilding my server to test it out......
i think from me toying with it so much that is why i was getting weird results... when i combined d and e... only e would work... rem the lines for e and d worked... weird....
also going to label the partitions to with /v:label but will test that after it all works!!!!!!!!!