Should You Even Split OS and Data?
On a single SSD, splitting into a small system partition and a larger data partition doesn't give you a performance benefit the way it might have on old spinning HDDs (where physically separating frequently-accessed OS files from bulk data reduced head seek time). On an SSD there's no seek penalty, so the real benefits are organizational: a clean reinstall of Windows without touching your files, easier backup/imaging of just the OS partition, and a hard boundary that stops a single runaway log file or downloads folder from filling the drive Windows needs free space on to function well.
Step 1: Initialize the Disk (New, Unformatted SSD)
If this is a brand-new SSD that's never been initialized, Windows Setup will offer to do this automatically during OS installation. If you're partitioning it separately from within a running Windows install (e.g. a secondary drive), use Disk Management:
- Right-click Start, choose Disk Management.
- If the new SSD shows as Not Initialized, right-click its disk label on the left and choose Initialize Disk.
- Select GPT (GUID Partition Table), not MBR. GPT is required for UEFI boot, supports drives larger than 2TB, and is the standard for any modern Windows install — there's no good reason to choose MBR on a new drive today.
Step 2: Partitioning During Windows Setup (New OS Install)
This is the cleanest way to set up an OS+data split, since Windows Setup handles the boot-critical partitions (EFI System Partition, MSR, Recovery) correctly on its own.
- Boot from your Windows installation USB and get to the Where do you want to install Windows? screen.
- If the drive shows existing partitions or is unallocated space from another OS, select each partition on the target drive and click Delete until you're left with one block of unallocated space (this erases everything on it — make sure you're selecting the correct drive).
- With the unallocated space selected, click New, type your OS partition size in MB (e.g.
153600for 150GB), and click Apply. Windows Setup will automatically create the EFI System Partition, Microsoft Reserved (MSR) partition, and Recovery partition alongside it — don't try to create these manually. - Select the newly created Primary partition of your specified size and click Next to install Windows onto it. Leave the remaining unallocated space for now — you'll format it as your data drive after Windows finishes installing.
Step 3: Create the Data Partition After Windows Is Installed
- Once Windows is installed and booted, open Disk Management (
Win + X, then Disk Management). - Right-click the remaining Unallocated space on the SSD and choose New Simple Volume.
- Follow the wizard: accept the default size to use all remaining space (or specify less if you want to leave more unallocated for later), assign a drive letter (e.g.
D:), and format as NTFS with a quick format. - Give it a meaningful volume label like
Dataso it's clearly distinguishable from C: in File Explorer.
About 4K Alignment
Partition alignment used to be a manual concern on older Windows versions and tools, where a misaligned partition could straddle physical sector or NAND page boundaries and hurt performance. Every partition created through Windows Setup or Disk Management on Windows 7 and later is automatically aligned to a 1MB boundary by default, which is a clean multiple of the 4K sectors SSDs use internally. You do not need to manually specify alignment with modern Windows tools — this is only a concern if you're using very old third-party partitioning software or partitioning from a Linux tool with unusual defaults.
msinfo32, or from an elevated PowerShell prompt run Get-Partition | Select DriveLetter, Offset — the Offset value should be evenly divisible by 4096 (1,048,576 bytes / 1MB alignment satisfies this). If it isn't, the partition was likely created with unusual third-party or legacy tooling and should be recreated.Step 4: Redirect User Folders to the Data Drive (Optional but Recommended)
To actually benefit from the split day-to-day, move your personal folders off C: so a Windows reinstall doesn't touch them:
- Open File Explorer, right-click Documents (repeat for Pictures, Downloads, Videos, Music) under Quick Access or This PC.
- Go to Properties > Location, click Move, and select a folder on your data partition (e.g.
D:\Documents). - Confirm when prompted to move existing files to the new location.
This keeps your OS partition lean and means a future clean install of Windows on C: leaves D: completely untouched.
Discussion & Insights