Sunday, August 19, 2012

Deleting Recovery Partition


Today I was preparing an old hard drive for data backup when I had problems deleting 1 of its partitions.  I normally use Disk Management in under Control Panel -> Computer Management however when I right clicked on the partition everything is greyed except the help item.

The above image is not a screenshot of my pc but reflects the same issue

Because this hard drive used to belong to store bought laptop, it came with a recovery partition that is by default hidden and possibly write protected, which is the norm for most laptops today (along with bloatware).  I found this simple solution via sevenforums.com which hopefully helps others as it did for me quickly:
  • Go to command prompt
  • Type diskpart
Enter the following:
  • diskpart
  • list disk
  • select disk [whatever the disk number is] (e.g. your disk is #5 type: select disk 5)
  • list partition
  • select partition [Name of partition] (e.g. partition name is recovery: select partition recovery)
  • delete partition override 

Not my screenshot, just an example what to look for
  
A thorough guide on how to use diskpart commands you can find here.

This worked wonderful for me. It was quick and easy and no extra 3rd party software was needed.  Of course this will work with any of the O.S that has the diskpart utility (Windows 7, Server 2008, etc) so Win XP users or lower may have to use a utility like Partition Magic or Partition Wizard.  I also wanted to note since this was a secondary drive I was using, I did not have to boot into Win 7 recovery mode to make any changes as some people might need to if this is their boot drive they are working on.

You can view the full thread on it here.


Happy Tech-ing!