My 3TB hard drive has 1TB unallocated

![Screenshot (15)|666x500](upload://i0ULRTW3Yqcq5GIYxaiQOA57QSF.png

I cannot make a new volume nor extend the previous partition. 746 GB unallocated! I think is too much to be wasted.

You probably partitioned it MBR (Master Boot Record) which has 2TB Capacity Limitation.

Re-Format and Partition it NTFS and selecting GPT (GUID Partition Table) which supports up to and greater than 2TB

2 Likes

1st back up your data from the D: drive then run Diskpart.exe
type “select disk 1”
type “clean”
exit Diskpart
Open your Disk management and initialize your drive as GPT then create a partition and format

1 Like

Whenever there is "disk unknown not initialized” issue occurs, your hard drive may show unallocated space in Disk Management, and the data on which will be inaccessible or else there is another situation: there is no disk space shown in Disk Management.

There are few possible reasons behind hard disk not initialized listed below:

  1. File system corruption.
  2. Virus infection.
  3. Bad blocks and sectors.
  4. MBR damage.
  5. Connection problem.

You can give a try to below mentioned 2 different methods to resolve the issue:

Method 1. Use Disk Management to fix not initialized error on external hard drive

  1. Connect uninitialized external hard drive to your PC.
  2. Press Win + R keys, type: diskmgmt.msc and hit Enter.
  3. Find the uninitialized, unknown external hard drive with I/O device error > Right-click on it and select Initialize Disk.
  4. Then set the disk to initialize and set disk as MBR or GPT.

After this, you may reboot your PC and keep all changes. Now, your external hard drive will be recognized and read by Windows again.

Method 2. Run CMD to repair I/O device error on not initialized external hard drive

This CMD command would erase all data on the uninitialized hard drive, which you can later restore after repairing the external hard drive not initialized, with the help of any data recovery or partition recovery software:

  1. Press Win+R > Type: diskpart and hit Enter.
  2. Type: list disk and hit Enter.
  3. Type: select disk F and hit Enter; (replace F with the drive letter of an uninitialized external hard drive).
  4. Type: clean and hit Enter.
  5. Type: convert gpt or convert mbr and hit Enter.
  6. Type: create partition primary and hit Enter.
  7. Type: format quick fs=ntfs and hit Enter.
  8. Type: assign and hit Enter.
  9. Type: exit and hit Enter.

Hope it will help!

I probably did: thinking about compatibily with Windows XP. I think your advice is for a first use hard drive because I didn’t get the option to convert it to a GPT in Disk Management and I had to follow the CMD procedure. Thank you all. Everything’s fine now.

I know it’s been nearly a year since this post, but I would like to thank you! I had the same issue while I was checking some portable hard drives I’m giving away. Apparently, this hard drive has had this problem all along, and nobody in my company reported it to me. I followed your advice and suddenly have another TB of disk space! I’ve decided to keep this disk for my own use. Thanks again!

You must convert your hard drive’s partition table from MBR to GPT. After the conversion, you can perfectly use the entire 3TB of space.

Because the MBR (Master Boot Record) partition table only supports a maximum addressable space of 2TB, the portion of your 3TB hard drive exceeding 2TB (approximately 746 GB) will become dead space, unrecognizable and unusable by the system under the MBR format.

Windows built-in tools (such as diskpart or disk management) must delete all partitions and data on the hard drive before converting the partition table. If this hard drive contains important data, please copy the data to another location first!

If your hard drive is empty or you have already backed up the data, you can use a built-in Windows tool.

  1. Press Win + X on your keyboard and select Terminal Administrator or Command Prompt (Administrator).

  2. Type diskpart and press Enter.

  3. Type list disk and press Enter (confirm your 3TB hard drive’s drive letter, assuming it’s Disk 1).

  4. Type select disk 1 and press Enter (be careful not to select the wrong disk!).

  5. Type clean and press Enter (this step will erase all data on the disk).

  6. Type convert gpt and press Enter.
    Also read this article: MBR vs GPT: Which One to Choose When Partitioning a Drive