7

There was a Windows 10 update which created (or made visible) a recovery partition in this PC. Since it is 449MB in size and only 35,8MB are free, every few minutes I get a warning that it is low on disk space. Now I found this: Disable the low disk space popup warning in windows 10 to disable the warning, but since I didn't create this partition (it's a custom pc) and I can't use it, but also don't just want to delete it, is there a way to also hide that partition from "My Computer"?

3 Answers 3

5

I think that just unassigning the drive letter will do the trick:

  1. Open Computer Management on the local computer by right clicking on Computer in Windows Explorer and choose Manage. Then click on Disk Management in the left hand pane.

    (Or just type diskmgmt.msc into the run dialog)

  2. Right click on the shaded area for Drive D: System reserved (or whatever the name is / letter) in the lower right hand window.

  3. Click on Change drive letter or paths

  4. Highlight D:(letter of the partition) and click remove

If you receive error messages that the drive might be in use or that programs might not run correctly, don't panic. It is OK to remove the drive letter. Once a letter is not assigned, the drive will not appear in Windows Explorer.

Hope this helps!

1
  • Trying to link a related question is tough.
    – Ramhound
    Commented May 10, 2018 at 22:48
8

I encountered this same problem after the Windows 10 Spring 2018 update. I was unable to unassign the drive letter according to the instructions from Tiago Caldeira that used Disk Management, however these command line instructions did work for me:

  • Open Command Prompt in Admin
  • Enter diskpart
  • Enter list volume
  • Enter select volume [number of your volume]
    • For example: select volume 0
  • Enter remove letter=[drive letter of your volume]
    • For example: remove letter=f
  • You should see the message DiskPart successfully removed the drive letter or mount point.

I hope this information helps!

5
  • 3
    Why was this downvoted? I found it helpful. Commented May 11, 2018 at 7:25
  • 1
    The remove volume=f did not work for me. I had to use remove letter=f
    – Caz
    Commented May 17, 2018 at 16:47
  • @Caz you are correct! I'll edit my answer. Thanks! Commented May 17, 2018 at 20:46
  • 1
    For me, after computer restart, drive is appearing again
    – Somnium
    Commented Jan 27, 2021 at 17:44
  • @Somnium Had the same problem. Problem resolved when using the mountvol x: /D instead of diskpart suggested by arvy Commented Jun 6, 2021 at 1:06
3

Run this on DOS Prompt running as administrator:

mountvol X: /D

Change X: to the assigned drive letter. Done.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .