Forum Discussion
How can I divide one partition into two in Windows 10
Hi all,
I have an external SSD 1TB for backing up my iPhone. Currently, only one NTFS partition is on this hard drive. However, there is only 200GB space being used. Now, I want to install Windows 11 on this portable SSD (free space) without losing data.
My question is: how to divide partition in Windows 10 without losing data? I prefer a simple and straightforward solutions.
Thank you
7 Replies
- UlisesinIron Contributor
Dr.Parition is a nice tool for splitting a patition in Windows 10. It is more safe than the built-in tools.
- WestwordIron Contributor
Alright, so you’re eyeing DiskPart for dividing partitions in Windows 10 — cool choice if you’re comfy with command-line stuff. There are some downsides and gotchas to watch out for.
1. Since DiskPart is command-line and super powerful, one typo or selecting the wrong disk/partition can wipe out your data or mess up your drive. No fancy undo button here — once it’s done, it’s done. So, if you’re not super careful, you could end up losing everything.
2. Unlike Disk Management, which shows you a visual layout of your drives, DiskPart’s all text-based. That makes it harder to see what’s what, especially if you’re new. Mistaking disk numbers or partitions can be a disaster.
3. Dividing a partition in Windows 10 means shrinking or creating new ones, which can lead to data corruption if the process isn’t perfect or if there’s a power failure during the operation. Always back up first, or you’re gambling with your files.
4. DiskPart is great for simple tasks, but it doesn’t handle more advanced stuff like creating dynamic disks or complex RAID setups easily. If you’re into that, you’ll need other tools.
5. Messing around with system or boot partitions with DiskPart can make your Windows unbootable if you’re not careful. It’s not a tool for casual tinkering with crucial system partitions unless you know exactly what you’re doing.
6. If you’re new to command-line tools, DiskPart can be intimidating. One wrong command, and you might have to reinstall Windows or do some recovery work. It’s not as forgiving as graphical tools.
- NguyenaisBronze Contributor
When dividing a partition in Windows 11 or Windows 10 (i.e., shrinking an existing volume to create a new one), here are some important things to note.
1. Backup Important Data First
Even though partitioning tools are generally safe, there's always a small risk of data loss if something goes wrong. Always back up important files before modifying disk partitions.
2. You Must Have Administrative Rights
Partition changes require administrator privileges. Make sure you run Disk Management, Command Prompt, or third-party disk manager tools as an administrator.
3. System Partition Limitations
You are unable able to shrink or split the system (C:) partition very much due to unmovable system files. Third party disk partition software can sometimes bypass this better than Windows' built-in tools.
4. Don't Modify Partitions During Critical Operations
Avoid partitioning while running system updates, large file transfers, or backup operations. It could lead to system errors or corruption
Tip: When you finished partitioning one partition into two, Windows automatically assigns a drive letter to new partitions, but you can change it in Disk Management if it conflicts with another device or preference.
- DavidGarciaIron Contributor
Yeah, dividing a partition sounds simple, but there are a few common errors that can trip you up — trust me. I’ve seen it happen. If you are going to divide one partition into two and if there’s not enough free space to shrink, the process might not work or could cause errors. Make sure you have enough unallocated space after shrinking. Like shutting down your PC or losing power mid-operation. That can corrupt your partitions or make your drive unreadable. Keep your computer plugged in and don’t mess with it while it’s working.
Windows’ built-in Disk Management is usually safe, but if you go for third-party tools to divide one partition into two, make sure they’re reputable. Some junk apps can mess things up. Sometimes Windows won’t let you shrink the system partition enough, or it causes issues. If that happens, using a bootable partition manager might be safer. Like choosing the wrong size or the wrong drive letter. Double-check everything before clicking “Finish” or “Apply.”
- AbdullahGujjarBronze Contributor
DiskPart is a powerful command-line disk partition tool built into the Windows operating system. It provides users and administrators with advanced tools to manage disks, partitions, and volumes directly from the Command Prompt or PowerShell. Introduced with Windows XP and included in all subsequent versions of Windows, DiskPart offers more granular control over storage devices than the standard graphical Disk Management tool.
DiskPart operates by entering a command-line environment where each command must be explicitly typed. Before executing most commands, the user must first select a disk, partition, or volume to work with. This makes DiskPart both flexible and potentially risky if used improperly, as incorrect commands can lead to data loss.
DiskPart gives you more control over partitioning using commands. You can easily use diskpart to split or divide one partition into two on any Windows OS.
list disk select disk X list partition select partition Y shrink desired=XXXX create partition primary size=YYYY format fs=ntfs quick assign letter=Z✅ Best for advanced users who prefer command-line control when it comes to divide partitions in Windows 10 or Windows 11.
- AsherBrooksIron Contributor
To free divide partition in Windows 10 using the built-in Disk Management tool, follow these steps:
1. Open Disk Management:
Press Windows key + X and select Disk Management.
Or press Windows key + R, type diskmgmt.msc, and press Enter.2. Locate the Partition to Shrink:
In the Disk Management window, find the drive you want to shrink (e.g., C:).3. Right-Click and Choose Shrink:
Right-click on the partition and select "Shrink Volume...".4. Enter the Amount to Shrink:
A dialog box will appear showing the total size of the partition and the amount of space available to shrink.
Enter the amount of space in MB you want to free up by shrinking the partition.
Click Shrink.5. Unallocated Space Created:
After the process completes, you'll see unallocated space next to the partition in Disk Management.6. Use the Unallocated Space:
You can now right-click on the unallocated space to create a new partition or extend an existing one.You can only divide partition in Windows 10 if there is free space available and no files are actively using that space. If the Shrink Volume option is grayed out or doesn't free as much space as you want, some files or system files may be preventing the shrink.
- VickieMurphIron Contributor
Windows Disk Management is a built-in utility in Windows that lets you manage your computer's hard drives and storage devices without using third-party software. It provides a graphical interface for performing tasks like creating, deleting, resizing, formatting, and assigning drive letters to partitions.
You can access Disk Management by right-clicking the Start button and selecting Disk Management, or by typing diskmgmt.msc into the Run dialog (Windows + R). It displays all connected disks and their partitions, showing details such as file system (e.g., NTFS, FAT32), capacity, and status.
It’s especially useful for:
- Shrinking or extending volumes
- Creating or deleting partitions
- Changing or assigning drive letters
- Initializing new disks
Disk Management is ideal for splitting or dividing partitions in Windows 11/10, though it has limitations (e.g., it can’t merge partitions or convert between all file systems) — for advanced needs, third-party disk partition tools are often used.