How can I unmark an external hard drive partition as being active?

15,479

Solution 1

The active partition is the one used when booting from that disk. This is why your system partition on your first disk is active. It doesn't affect anything else.


If you still want to remove it, open a command prompt with Administrator privileges and start diskpart.

Step by step instructions from here:

Type LIST DISK
Type SELECT DISK n (with n being the number of the external disk)
Type LIST PARTITION
Type SELECT PARTITION n (where n is the number of the active partition you wish to make inactive)
Type INACTIVE
Type EXIT to exit DISKPART
Type EXIT again to exit the command prompt

Solution 2

If you get a read-only error, do this first:

diskpart
select disk X
attrib disk

You should see some results like below (my test disk was boot disk)

Current Read-only State : No
Read-only : No
Boot Disk : Yes
Pagefile Disk : Yes
Hibernation File Disk : No
Crashdump Disk : Yes
Clustered Disk : No

if your disk is set to ready only use the similar command for volume on your disk.

attrib disk clear readonly
Share:
15,479

Related videos on Youtube

Pav
Author by

Pav

Updated on September 17, 2022

Comments

  • Pav
    Pav almost 2 years

    I accidentally marked my external hard drive partition as active in disk management. I meant to change the drive letter but hit the wrong button. Whoops. What are the consequences of having done that and is it possible for me to undo it? Below is a screenshot of my drives. My internal laptop HDD has C: (Windows 7 OS) and D: (extra data partition). This is regarding my other disk: Disk 1 G:

    enter image description here

  • Pav
    Pav over 13 years
    Exactly what I needed -- worked perfectly!