☕ Buy a Coffee
Home / IT Support & Troubleshooting

How to Partition a New SSD for OS and Data

Initialize GPT disk tables, align 4K allocation sectors, and separate Windows system partitions from large data libraries.

Sachin Siju
Sachin Siju
Lead Systems Engineer & Tech Blogger
Jul 13, 2026 4 min read
How to Partition a New SSD for OS and Data

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.

Before you start: Keep the OS partition reasonably sized — 100GB is a comfortable minimum for Windows 11 plus updates, drivers, and a handful of installed apps; 150–250GB gives more breathing room if you'll install games or larger software directly to C:.

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:

  1. Right-click Start, choose Disk Management.
  2. If the new SSD shows as Not Initialized, right-click its disk label on the left and choose Initialize Disk.
  3. 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.

  1. Boot from your Windows installation USB and get to the Where do you want to install Windows? screen.
  2. 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).
  3. With the unallocated space selected, click New, type your OS partition size in MB (e.g. 153600 for 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.
  4. 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

  1. Once Windows is installed and booted, open Disk Management (Win + X, then Disk Management).
  2. Right-click the remaining Unallocated space on the SSD and choose New Simple Volume.
  3. 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.
  4. Give it a meaningful volume label like Data so 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.

Verify alignment if you're unsure: Run 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:

  1. Open File Explorer, right-click Documents (repeat for Pictures, Downloads, Videos, Music) under Quick Access or This PC.
  2. Go to Properties > Location, click Move, and select a folder on your data partition (e.g. D:\Documents).
  3. 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.

Featured Infrastructure Partner

Deploy on High-Performance Hostinger Cloud

Get up to 75% OFF + free domain & SSL. Powering xube.me's sub-second response times.

Claim Discount ↗

Discussion & Insights

Related Technical Essays