Windows 10: Disk Management Issue -- Again

Discus and support Disk Management Issue -- Again in Windows 10 Drivers and Hardware to solve the problem; I had this issue once before and was helped, but I honestly can't remember how I was helped, and between Sevenforums, Eightforums, and Tenforums, I... Discussion in 'Windows 10 Drivers and Hardware' started by kbronski, Oct 30, 2015.

  1. kbronski Win User

    Disk Management Issue -- Again


    I had this issue once before and was helped, but I honestly can't remember how I was helped, and between Sevenforums, Eightforums, and Tenforums, I cannot find my old thread. So, with that in mind, here is the problem I'm having:


    Disk Management Issue -- Again [​IMG]


    The 4TB drive (see the black, unallocated chunks) is showing one GPT protected partition (which cannot be deleted) and two RAW partitions which cannot seem to be consolidated. I need to make the entire drive one partition so it can be used as a backup drive for a hotswap bay. This came out of a Seagate external HDD enclosure, and the drive was originally formatted FAT32, and the enclosure utilized a PCB to make the entire drive accessible (probably for mac compatibility). Anyway... I don't remember how I converted the last drive, and really wish I had documented it. Help??

    :)
     
    kbronski, Oct 30, 2015
    #1

  2. Disk Management issues

    So, I was able to fix it (kind-of). I downloaded minitool partition wizard which was able to see the drive and rename it to drive E:. Once that was done, explorer worked fine and I could pull all of my files off perfectly (woo-hoo!).

    Now, however, I have removed the drive and explorer stills shows drive E: . When I click on it, it says E:\ is unavailable..... Any idea how to remove this drive? I tried the minitool application, but it doesnt see a drive there to be able to remove it.
    I tried the disk manager, but it also doesnt see the drive. Nothing except explorer shows that E:\ drive. It doesnt mess anything up to have a non-functioning drive, I just figure I should clean it up while I am dealing with all of this.

    Thanks for any insight!!!
     
    DavidDixon2, Oct 30, 2015
    #2
  3. Disk Management issues

    I am trying to access an old hard drive from a previous computer. I have it attached to a windows 10 PC via IDE converter plugged into a USB drive. When I connect the drive, windows give me the sound that a device was just detected, but I dont see anything
    in my computer that has changed or any sign that a new drive is connected.

    My suspicion was that the drive was not seen because it my have had the same drive letter as my exisiting PC. If I access Disk Management through the computer management window, I see the drive I am looking for and it shows "Healthy (Active, Primary Partition)"
    and no drive letter is assigned to it. Right clicking in this window shows everything greyed out except the "delete volume" and "help" options.

    Any advice as to how I can set up the PC to access this drive? Thanks in advance!!!!

    Here are the images of what I am seeing with the right click as well.


    Disk Management Issue -- Again [​IMG]



    Disk Management Issue -- Again [​IMG]



    Disk Management Issue -- Again [​IMG]
     
    DavidDixon2, Oct 30, 2015
    #3
  4. Hydranix Win User

    Disk Management Issue -- Again

    Open cmd.exe as administrator.

    Run these commands EXACTLY or risk huge data loss.

    Code: diskpart sel dis 3 cle conv gpt cre par pri format fs=ntfs quick ass letter=S exit exit[/quote] "ass letter=S" change that S to whatever drive letter you desire if you so choose
     
    Hydranix, Oct 30, 2015
    #4
  5. Lord Snow Win User
    You can use diskpart.exe to delete that partition, and then convert the disk to GPT. If you are not familiar with diskpart, try a free partition manager software. you can find many of then in the internet.
     
    Lord Snow, Oct 30, 2015
    #5
  6. kbronski Win User
    "ass letter=S" change that S to whatever drive letter you desire if you so choose[/quote] Bonus points for the command line info; it's my preferred method of doing things. Thank you!

    PS: Bookmarked.
     
    kbronski, Oct 30, 2015
    #6
  7. spapakons Win User
    I didn't know there are abbreviated versions of the instructions. I would use the whole words, such as select disk 3, clean, convert gpt, create partition primary, format fs=ntfs quick, assign letter=s. Just make sure the disk you want to use is 3 (see Disk Management again) so as not to accidentally wipe any other disk! I would rather disconnect everything else and use a Windows DVD-ROM to run diskpart from there.
     
    spapakons, Oct 30, 2015
    #7
  8. Hydranix Win User

    Disk Management Issue -- Again

    @spapakons I started writing this post for that very reason, but fell asleep before finishing it last nght *Smile
    @kbronski and @the random google searcher that lands here:


    Full commands and brief explanation.

    Open cmd.exe as administrator.

    Run diskpart.exe to do unrestricted disk and partition management
    Code: diskpart[/quote] Select the disk you intend to modify. The number (3 in this case) directly relates to number shown in the Disk Management GUI. You DO NOT want to select the wrong disk and issue the clean command. Otherwise you will need third party recovery software.
    Code: select disk 3[/quote] Permanently (still recoverable in emergency) remove all partitions from the disk.
    Code: clean[/quote] Convert the disks partition table to the modern GPT format. Allows more partitions, and has protection against corruption. (also required to boot Windows
    Code: convert gpt[/quote] Create a single "primary" (primary/logical is irrelevant to GPT disks, but Windows still uses this term in this program) partition, spanning the entire disk.
    Code: create partition primary[/quote] The newly created partition is automatically selected, so you can issue the format command to write a filesystem to it. The filesystem in this case is NTFS, and the option quick means that instead if erasing the partition, it just writes an empty filesystem to it. It will behave like an erased disk, but old data is still recoverable until you write enough data to the disk to cover the old data. Only omit the quick option if security is a concern, or if the disk behaves strangely. (I've had Windows 7 install not accept a non-zeroed disk a couple times. Irrelevant with modern operating systems.)
    Code: format fs=ntfs quick[/quote] Now we assign a drive letter to the disk. This will mount the filesystem and allow you to access and store files on the partition.
    Code: assign letter=S[/quote] Now we're done, we issue the exit command first to exit diskpart, and a second time to close the CMD prompt. You can also just closer the window at this point. Does the same thing.
    Code: exit exit[/quote]
     
    Hydranix, Oct 30, 2015
    #8
  9. kbronski Win User
    Select the disk you intend to modify. The number (3 in this case) directly relates to number shown in the Disk Management GUI. You DO NOT want to select the wrong disk and issue the clean command. Otherwise you will need third party recovery software.
    Code: select disk 3[/quote] Permanently (still recoverable in emergency) remove all partitions from the disk.
    Code: clean[/quote] Convert the disks partition table to the modern GPT format. Allows more partitions, and has protection against corruption. (also required to boot Windows
    Code: convert gpt[/quote] Create a single "primary" (primary/logical is irrelevant to GPT disks, but Windows still uses this term in this program) partition, spanning the entire disk.
    Code: create partition primary[/quote] The newly created partition is automatically selected, so you can issue the format command to write a filesystem to it. The filesystem in this case is NTFS, and the option quick means that instead if erasing the partition, it just writes an empty filesystem to it. It will behave like an erased disk, but old data is still recoverable until you write enough data to the disk to cover the old data. Only omit the quick option if security is a concern, or if the disk behaves strangely. (I've had Windows 7 install not accept a non-zeroed disk a couple times. Irrelevant with modern operating systems.)
    Code: format fs=ntfs quick[/quote] Now we assign a drive letter to the disk. This will mount the filesystem and allow you to access and store files on the partition.
    Code: assign letter=S[/quote] Now we're done, we issue the exit command first to exit diskpart, and a second time to close the CMD prompt. You can also just closer the window at this point. Does the same thing.
    Code: exit exit[/quote] [/quote]
    Yes, I gathered all of that by reading the initial code you had posted. Thanks, though.
     
    kbronski, Apr 5, 2018
    #9
Thema:

Disk Management Issue -- Again

Loading...
  1. Disk Management Issue -- Again - Similar Threads - Disk Management Issue

  2. Disk full 100% problem in Task manager again

    in Windows 10 BSOD Crashes and Debugging
    Disk full 100% problem in Task manager again: Disk full 100% problem. How to fix this problem?See Screenshot below: https://answers.microsoft.com/en-us/windows/forum/all/disk-full-100-problem-in-task-manager-again/82a83dc9-2e95-41b3-8774-2e1f46fe56d6
  3. Disk full 100% problem in Task manager again

    in Windows 10 Gaming
    Disk full 100% problem in Task manager again: Disk full 100% problem. How to fix this problem?See Screenshot below: https://answers.microsoft.com/en-us/windows/forum/all/disk-full-100-problem-in-task-manager-again/82a83dc9-2e95-41b3-8774-2e1f46fe56d6
  4. Disk full 100% problem in Task manager again

    in Windows 10 Software and Apps
    Disk full 100% problem in Task manager again: Disk full 100% problem. How to fix this problem?See Screenshot below: https://answers.microsoft.com/en-us/windows/forum/all/disk-full-100-problem-in-task-manager-again/82a83dc9-2e95-41b3-8774-2e1f46fe56d6
  5. Disk unallocated issue on the disk manager on a specific computer only.

    in Windows 10 Drivers and Hardware
    Disk unallocated issue on the disk manager on a specific computer only.: Hi, I have several external SSDs and external HDDs. I've been using them as backup drive, so they were dealt carefully. Since some point, every external HDD has the disk unallocated issue on the disk manager. They work perfectly fine though. Plus, it happens only a specific...
  6. Disk unallocated issue on the disk manager on a specific computer only.

    in Windows 10 Gaming
    Disk unallocated issue on the disk manager on a specific computer only.: Hi, I have several external SSDs and external HDDs. I've been using them as backup drive, so they were dealt carefully. Since some point, every external HDD has the disk unallocated issue on the disk manager. They work perfectly fine though. Plus, it happens only a specific...
  7. Disk unallocated issue on the disk manager on a specific computer only.

    in Windows 10 Software and Apps
    Disk unallocated issue on the disk manager on a specific computer only.: Hi, I have several external SSDs and external HDDs. I've been using them as backup drive, so they were dealt carefully. Since some point, every external HDD has the disk unallocated issue on the disk manager. They work perfectly fine though. Plus, it happens only a specific...
  8. Disk Management issues

    in Windows 10 Ask Insider
    Disk Management issues: Every time I think I've seen it all in Windows 10, something new comes up. When I plug in a usb storage device, if there's already a usb storage device plugged in, both devices drop out. When I try to go to Disk Management, it states that I "do not have access rights to...
  9. Disk Management Issue

    in Windows 10 Network and Sharing
    Disk Management Issue: I added a hard physical hard drive to my system that used to be in another system. It is a 2TB drive and currently have 2 1TB drives, and a 468MB Healthy (Recovery Partition) on it. This drive is NOT my boot drive. I want to reformat this drive as a 2TB simply NFTS drive....
  10. Strange disk management issue

    in Windows 10 Drivers and Hardware
    Strange disk management issue: a desktop system with just 1 SSD drive connected (and 2 optical drives) and the only thing on the SSD is C: with Windows Insider 18329.1 installed. Disk Management shows Disk 2 "PortableBaseLayer" as a read only drive of 8GB. There is no Disk 2 connected (Disk 1 is an empty...

Users found this page by searching for:

  1. portAblebaselayer

    ,
  2. how to remove portablebaselayer

    ,
  3. how to delete PortableBaseLayer

    ,
  4. drive portablebaselayer,
  5. remove portablebaselayer,
  6. virtual hdd portablebaselayer,
  7. portablebaselayer disk,
  8. *portablebaselayer ntfs