18 March 2014

Recover free space on a full “System Reserved” partition in Windows Server

One of my servers was reported low free space on “System Reserved” partition. Never seen before such a problem.

When you install Windows and use whole disk for installation, it still does two partitions:

  1. “System Reserved”, without drive letter, few hundred MB in size
  2. C: drive with the rest of the space, several GB in size

I found out after assigning drive letter to the small partition, that most of the space was wasted by “system volume information” folder. This lead me to try “vssadmin list shadows” command to see all VSS snapshots. And indeed there were snapshots present:

image

So I tried to get rid of them by using command “vssadmin delete shadows /for=c:”, but it failed.

image

For that purpose I found utility named diskshadow. I listed all shadows with command “list shadows all” and deleted them with the command “delete shadows all

image