How can I use DiskPart to create a RAID 5 set?

John Savill

March 19, 2003

1 Min Read
ITPro Today logo in a gray background | ITPro Today

A. A RAID 5 set consists of data spread across three physical disks, of which one can fail without causing any data loss. To use the DiskPart utility from the Windows 2000 Server Resource Kit or the Win2K Professional Resource kit to create a RAID 5 set, perform the following steps:

  1. Download and install the DiskPart utility from the Microsoft Web site.

  2. Go to Start, Run, then type

    cmd

    to start a command-line session.

  3. Type

    diskpart

    to start a DiskPart session.

  4. Type

    create volume raid size= disk=

    where is the amount of space you want to use from each disk (in megabytes) and are the numbers of the disks that you want to use in the RAID 5 configuration. For example,

    create volume raid size=6000 disk=1,2,3

    creates a RAID 5 set that's 12GB (i.e., 6000MB x 2) across three disks (one-third of the space is used for fault tolerance).

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like