<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Windows on LEl_FENG Blog</title><link>https://blog.xpdbk.com/en/tags/windows/</link><description>Recent content in Windows on LEl_FENG Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>LEl_FENG Copyright</copyright><lastBuildDate>Fri, 23 Aug 2024 12:00:32 +0700</lastBuildDate><atom:link href="https://blog.xpdbk.com/en/tags/windows/index.xml" rel="self" type="application/rss+xml"/><item><title>Complete Guide to Creating Software RAID on Windows</title><link>https://blog.xpdbk.com/en/posts/raid-windows/</link><pubDate>Fri, 23 Aug 2024 12:00:32 +0700</pubDate><guid>https://blog.xpdbk.com/en/posts/raid-windows/</guid><description>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/1.webp" alt="Featured image of post Complete Guide to Creating Software RAID on Windows" />&lt;blockquote>
&lt;p>&lt;strong>TL;DR / [Geek Summary]:&lt;/strong>&lt;/p>
&lt;ul>
&lt;li>Zero-Cost Array: Ditch expensive RAID cards and leverage built-in Windows Disk Management for enterprise-grade redundancy and speed.&lt;/li>
&lt;li>Arch Trade-offs: Compare Spanned, Striped (RAID 0), Mirrored (RAID 1), and RAID 5 volumes to balance safety vs. performance.&lt;/li>
&lt;li>Disaster Recovery: Mastering the transition from Basic to Dynamic disks to build self-healing software-defined storage arrays.&lt;/li>
&lt;/ul>
&lt;/blockquote>
&lt;p>Software RAID is a disk array function
implemented through operating system-level software, eliminating the need for expensive hardware RAID controller cards. While it may not match hardware RAID in terms of extreme performance, it excels in being free of charge and easy to configure, making it a very stable low-cost storage and data redundancy solution.&lt;/p>
&lt;p>In this article, we will use &lt;strong>Windows Server 2022&lt;/strong> as an example (though this method applies to Windows XP and all subsequent versions) to walk you through how to create and configure software-based RAID in Windows.&lt;/p>
&lt;hr>
&lt;h3 id="step-1-prepare-hard-drives-and-enter-disk-management">
&lt;a href="#step-1-prepare-hard-drives-and-enter-disk-management" class="heading-anchor" aria-label="Anchor for Step 1: Prepare Hard Drives and Enter &amp;amp;ldquo;Disk Management&amp;amp;rdquo;">#&lt;/a>
Step 1: Prepare Hard Drives and Enter &amp;ldquo;Disk Management&amp;rdquo;
&lt;/h3>
&lt;ol>
&lt;li>Connect the prepared hard drives to your computer and boot into Windows.&lt;/li>
&lt;li>Right-click the &lt;strong>Start&lt;/strong> icon at the bottom of the screen and select &lt;strong>Disk Management&lt;/strong> from the system menu.&lt;/li>
&lt;li>If the newly connected disks are not yet initialized, a prompt will automatically appear. Choose either MBR or GPT partition style based on your capacity needs to complete the initialization.&lt;/li>
&lt;/ol>
&lt;p>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/1.webp"
width="754"
height="597"
srcset="https://blog.xpdbk.com/en/posts/raid-windows/1_hu54f0469f1cafddb4f3aee52a405707c4_33828_480x0_resize_q75_h2_box_2.webp 480w, https://blog.xpdbk.com/en/posts/raid-windows/1_hu54f0469f1cafddb4f3aee52a405707c4_33828_1024x0_resize_q75_h2_box_2.webp 1024w"
loading="lazy"
alt="Initialize Disk"
class="gallery-image"
data-flex-grow="126"
data-flex-basis="303px"
>&lt;/p>
&lt;hr>
&lt;h3 id="step-2-understanding-disk-volume-types-in-windows">
&lt;a href="#step-2-understanding-disk-volume-types-in-windows" class="heading-anchor" aria-label="Anchor for Step 2: Understanding Disk Volume Types in Windows">#&lt;/a>
Step 2: Understanding Disk Volume Types in Windows
&lt;/h3>
&lt;p>In the Disk Management interface, right-click the &amp;ldquo;Unallocated&amp;rdquo; space of any new disk. You will see several options for creating new volumes. Before proceeding, it is important to understand their differences and use cases:&lt;/p>
&lt;p>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/2.webp"
width="753"
height="252"
srcset="https://blog.xpdbk.com/en/posts/raid-windows/2_hu11c642c8b2b22ad2cb91248a966a472a_16122_480x0_resize_q75_h2_box_2.webp 480w, https://blog.xpdbk.com/en/posts/raid-windows/2_hu11c642c8b2b22ad2cb91248a966a472a_16122_1024x0_resize_q75_h2_box_2.webp 1024w"
loading="lazy"
alt="Create Partition"
class="gallery-image"
data-flex-grow="298"
data-flex-basis="717px"
>&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Simple Volume:&lt;/strong> The most basic partition type, created using free space on a single hard drive.&lt;/li>
&lt;li>&lt;strong>Spanned Volume:&lt;/strong> Stitches space from two or more disks together into a single large drive letter. it provides no performance boost or data redundancy; if one disk fails, the data may be at risk.&lt;/li>
&lt;li>&lt;strong>Striped Volume (Similar to RAID 0):&lt;/strong> Distributes data across multiple disks, significantly improving read/write (I/O) performance. &lt;strong>The downside is that it provides no data redundancy or fault tolerance.&lt;/strong> If any one disk fails, all data in the entire volume will be lost. There is no limit on the number of disks.&lt;/li>
&lt;li>&lt;strong>Mirrored Volume (Similar to RAID 1):&lt;/strong> Requires at least two disks. Data is written to both disks simultaneously, creating a mirror copy (50% space utilization). If one disk fails, the other takes over seamlessly. &lt;strong>This offers high data security&lt;/strong>, but read/write performance improvements are negligible.&lt;/li>
&lt;li>&lt;strong>RAID-5 Volume:&lt;/strong> Requires at least 3 disks. It offers a perfect balance between read/write speed and data fault tolerance. The usable capacity is calculated as &lt;code>Capacity of single disk × (Total number of disks - 1)&lt;/code>. &lt;strong>Note: In the Windows ecosystem, usually only Server editions support creating this volume type directly.&lt;/strong>&lt;/li>
&lt;/ul>
&lt;hr>
&lt;h3 id="step-3-hands-on-creating-a-raid-5-volume">
&lt;a href="#step-3-hands-on-creating-a-raid-5-volume" class="heading-anchor" aria-label="Anchor for Step 3: Hands-on: Creating a RAID-5 Volume">#&lt;/a>
Step 3: Hands-on: Creating a RAID-5 Volume
&lt;/h3>
&lt;p>Now, let&amp;rsquo;s demonstrate how to configure a &lt;strong>RAID-5&lt;/strong> volume, which balances speed and safety.&lt;/p>
&lt;ol>
&lt;li>Right-click the &amp;ldquo;Unallocated&amp;rdquo; space of any target disk, select &lt;strong>New RAID-5 Volume&lt;/strong>, and click &amp;ldquo;Next&amp;rdquo; on the wizard welcome page.&lt;/li>
&lt;/ol>
&lt;p>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/3.webp"
width="582"
height="507"
srcset="https://blog.xpdbk.com/en/posts/raid-windows/3_hu7f43e41b414948d543496a204ce674df_14164_480x0_resize_q75_h2_box_2.webp 480w, https://blog.xpdbk.com/en/posts/raid-windows/3_hu7f43e41b414948d543496a204ce674df_14164_1024x0_resize_q75_h2_box_2.webp 1024w"
loading="lazy"
alt="New RAID-5 Volume"
class="gallery-image"
data-flex-grow="114"
data-flex-basis="275px"
>&lt;/p>
&lt;ol start="2">
&lt;li>&lt;strong>Select Disks&lt;/strong>: In the disk selection interface, move the disks you want to include in the RAID 5 array from the &amp;ldquo;Available&amp;rdquo; list on the left to the &amp;ldquo;Selected&amp;rdquo; area on the right by clicking &amp;ldquo;Add.&amp;rdquo;&lt;/li>
&lt;/ol>
&lt;p>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/4.webp"
width="582"
height="507"
srcset="https://blog.xpdbk.com/en/posts/raid-windows/4_hu1e2c5954ba85d9483444b3fe50afdec0_16954_480x0_resize_q75_h2_box_2.webp 480w, https://blog.xpdbk.com/en/posts/raid-windows/4_hu1e2c5954ba85d9483444b3fe50afdec0_16954_1024x0_resize_q75_h2_box_2.webp 1024w"
loading="lazy"
alt="Available Space"
class="gallery-image"
data-flex-grow="114"
data-flex-basis="275px"
>&lt;/p>
&lt;ol start="3">
&lt;li>&lt;strong>Assign Drive Letter&lt;/strong>: Assign an easily identifiable drive letter (e.g., D:, E:) to the array you are about to create, or you can choose to mount it under an empty NTFS folder.&lt;/li>
&lt;/ol>
&lt;p>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/5.webp"
width="582"
height="507"
srcset="https://blog.xpdbk.com/en/posts/raid-windows/5_hu3a9aeaa3bef8aa17b734349f2caf1fdd_12302_480x0_resize_q75_h2_box_2.webp 480w, https://blog.xpdbk.com/en/posts/raid-windows/5_hu3a9aeaa3bef8aa17b734349f2caf1fdd_12302_1024x0_resize_q75_h2_box_2.webp 1024w"
loading="lazy"
alt="Mount Partition"
class="gallery-image"
data-flex-grow="114"
data-flex-basis="275px"
>&lt;/p>
&lt;ol start="4">
&lt;li>&lt;strong>Format Settings&lt;/strong>: Choose the file system (usually NTFS by default) and a Volume Label (the name of the drive, e.g., &amp;ldquo;Data_RAID5&amp;rdquo;). &lt;strong>It is highly recommended to check &amp;ldquo;Perform a quick format&amp;rdquo;&lt;/strong> to save time, then click &amp;ldquo;Next.&amp;rdquo;&lt;/li>
&lt;/ol>
&lt;p>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/6.webp"
width="582"
height="507"
srcset="https://blog.xpdbk.com/en/posts/raid-windows/6_huf50b758d4a964b4977ea7504a1290810_16292_480x0_resize_q75_h2_box_2.webp 480w, https://blog.xpdbk.com/en/posts/raid-windows/6_huf50b758d4a964b4977ea7504a1290810_16292_1024x0_resize_q75_h2_box_2.webp 1024w"
loading="lazy"
alt="Format"
class="gallery-image"
data-flex-grow="114"
data-flex-basis="275px"
>&lt;/p>
&lt;ol start="5">
&lt;li>&lt;strong>Confirm Information&lt;/strong>: Review all settings and click &amp;ldquo;Finish.&amp;rdquo; &lt;em>(Note: A prompt may appear stating that the operation will convert basic disks to dynamic disks. This is a required step for software RAID; click &amp;ldquo;Yes&amp;rdquo; to proceed.)&lt;/em>&lt;/li>
&lt;/ol>
&lt;p>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/7.webp"
width="582"
height="507"
srcset="https://blog.xpdbk.com/en/posts/raid-windows/7_hu2cd01e53e269a2e221fe9e7db44031c2_17262_480x0_resize_q75_h2_box_2.webp 480w, https://blog.xpdbk.com/en/posts/raid-windows/7_hu2cd01e53e269a2e221fe9e7db44031c2_17262_1024x0_resize_q75_h2_box_2.webp 1024w"
loading="lazy"
alt="Finish"
class="gallery-image"
data-flex-grow="114"
data-flex-basis="275px"
>&lt;/p>
&lt;hr>
&lt;h3 id="step-4-wait-for-synchronization-and-begin-usage">
&lt;a href="#step-4-wait-for-synchronization-and-begin-usage" class="heading-anchor" aria-label="Anchor for Step 4: Wait for Synchronization and Begin Usage">#&lt;/a>
Step 4: Wait for Synchronization and Begin Usage
&lt;/h3>
&lt;p>After completing the wizard, return to the main Disk Management interface. You will notice the disks have changed to a specific color representing the array (RAID-5 is typically cyan).&lt;/p>
&lt;p>The system will perform a short formatting and data synchronization process in the background. Once the status shows as &lt;strong>&amp;ldquo;Healthy&amp;rdquo;&lt;/strong>, your Windows software RAID array is ready. You can now use it in &amp;ldquo;This PC&amp;rdquo; just like a standard hard drive!&lt;/p>
&lt;p>&lt;img src="https://blog.xpdbk.com/en/posts/raid-windows/8.webp"
width="993"
height="596"
srcset="https://blog.xpdbk.com/en/posts/raid-windows/8_hu18db692f5a72c1d9acac872a7aa0ec01_41110_480x0_resize_q75_h2_box_2.webp 480w, https://blog.xpdbk.com/en/posts/raid-windows/8_hu18db692f5a72c1d9acac872a7aa0ec01_41110_1024x0_resize_q75_h2_box_2.webp 1024w"
loading="lazy"
alt="Ready for use"
class="gallery-image"
data-flex-grow="166"
data-flex-basis="399px"
>&lt;/p></description></item></channel></rss>