How to shrink Windows 7 boot partition with unmovable files

117

55

I have just bought an HP laptop with Windows 7 (64 bit). It has a 500 GB HDD with three partitions: a small hidden system partition, a 12 GiB HP recovery partition, and a 450 GiB C: boot partition.

I would like to split this large C: partition into two partitions, leaving only 100 GiB for the system, and giving the rest to a new data partition.

Although the Windows built-in Disk Management utility has an option to shrink the bootable partition, it only allows me to shrink it roughly by half, even though only 20 GiB on the partition is used. As far as I understand, system unmovable files lie in the middle of the partition, preventing Disk Management utility to do what I want.

And since new HP laptops don't come with OS installation disks (they only allow you to create recovery disks yourself), I can't just repartition HDD and then reinstall OS.

So, is there a way to shrink the C: bootable partition and preserve Windows 7 working?

P.S.: I have tried to use the third-party GParted utility, and after shrinking the partition, Windows 7 stopped booting, with a BSoD. System recovery didn't work, and I had to do factory recover. Since this is a long process, I would like to avoid doing it again :) So, please, suggest only proven solutions.

Alex Che

Posted 2009-12-27T14:50:12.040

Reputation: 2 592

duplicate of https://superuser.com/questions/1017764/how-can-i-shrink-a-windows-10-partition

– masterxilo – 2018-12-19T20:37:48.400

1@masterxilo, that question targets Windows 10 and is asked 6 years later than mine. – Alex Che – 2018-12-20T10:17:33.160

I agree @AlexChe. But I think people coming here will be looking for a windows 10 solution, and probably most instructions are interchangeable. I should have said it is related/for windows 10. – masterxilo – 2018-12-22T21:07:55.720

Answers

102

TL;DR

  1. Try to shrink the partition in the Windows Disk Management snap-in. Proceed to the step 2, if the shrink fails.
  2. Find the event with ID 259 in the Windows Event Log and see it's details.
  3. For even more details, optionally, run the fsutil command with the appropriate parameters given on step 2.
  4. Given the details from the steps 2 and 3, determine what component, program or feature is locking your partition.
  5. Temporarily disable or uninstall it.
  6. Go to the step 1.

Possible culprits: Virtual Memory, System Restore and/or Windows Search Index (System Volume Information folder), Hibernation, Internet Explorer temporary files.

Detailed version:

In the low-level tasks, like working with an HDD system partition, I prefer to use native tools as much as possible, and switch to third-party tools only as a last resort, if none of native tools worked. So, directed by harrymc, I gave Windows Disk Management another try.

I first turned Virtual Memory and System Restore off, removed System Volume Information folders, and after that Disk Management utility allowed me to shrink the C: partition as much as I needed. After that I turned the features back on.

The following instructions may help you to identify what application or component is preventing your partition to shrink. First you need to find the latest event with ID 259 in the Windows Event Log (see Event Viewer / Windows Logs / Application). The event is generated when the system analyses a partition, and if you have already tried to shrink a partition via right-clicking on it in the disk management snap-in, then the event should be there. Another way to make the system analyze a partition is to run the Windows built-in defragmentation utility. The event tells you the last unmovable file or just the number of the last cluster of such a file. It also tells you the complete command to run from the command line to get more details about the last unmovable file. (Alternatively, you can probably also try to calculate the cluster number as min allowed partition size divided by cluster size, and then run the fsutil command with the appropriate parameters).

The filename will give you a hint to guess, what program or feature is locking your partition. And then you can turn it off or uninstall, and see if it helped. In my case turning off Virtual Memory and System Restore was enough. Sometimes it is also necessary to turn off hibernation, etc. And sometimes partition defragmentation may also help. Also, as stated in the WindowsITPro article, Windows Search Index files and Internet Explorer temporary files can also be "unmovable". Sometimes just disabling the System Restore and Windows Search Index will automatically remove unmovable files from the System Volume Information folder, and sometimes you may need to remove the folder manually after that.

P.S.: Thanks everyone for answers. Probably third-party tools would also work in my case, and probably they are easier to use, but as I have already told, for such kind of tasks I prefer to use native tools as much as possible. Also, personal thanks to harrymc for the important hint.

Alex Che

Posted 2009-12-27T14:50:12.040

Reputation: 2 592

4

I couldn't quite follow the fsutil comments. But after I read a post on shrinking NTFS (http://windowsitpro.com/storage/q-im-trying-shrink-ntfs-volume-shrink-value-possible-far-less-my-free-space-whats-wrong), it became clearer. Don't try fsutil first, attempt a defrag and then look in the Event Viewer Application Log for defrag events (Event ID 259 as noted above). The log message actually gives you the instructions for which fsutil command to run.

– icc97 – 2014-06-29T14:07:21.723

How do I search for defrag events in Event viewer? – To Do – 2014-10-20T09:40:08.163

I read that removing system Volume Information folders for your Windows partition is NOT recommended. – To Do – 2014-10-20T09:41:19.383

System Volume Information folder contains restore points data, i.e. the data necessary to restore system files on the partition to some earlier point in time. Deleting the folder makes it impossible to restore system files by means of the System Restore feature. Since this was a clean Windows installation, I had nothing meaningful backed up yet. That's why it is preferable to define system partition as early as possible. But if you already have some apps or updates installed, then you can create a back up by some other means, like creating the partition image, etc. – Alex Che – 2014-10-22T07:04:19.163

1

Also have a look at WindowsITPro (http://windowsitpro.com/storage/q-im-trying-shrink-ntfs-volume-shrink-value-possible-far-less-my-free-space-whats-wrong) for hints as to what could prevent shrinking a disk: System Restore, IE temporary files index, Windows Search Index, Pagefile.

– Pierre Arnaud – 2014-10-31T05:29:17.317

1

Disabling hibernation was the key ingredient in my case. Regarding freeing up some more additional space, here is a good guide for Win 8.1 (with a link to Win7 version inside) http://www.hanselman.com/blog/GuideToFreeingUpDiskSpaceUnderWindows81.aspx

– jakub.g – 2015-09-12T20:54:21.577

2

@icc97 's comment nails it!!! Using the link s/he shares, I was able to narrow down that the file preventing me from shrinking was a bloody Norton file!!!! Thanks for that link.

– Jet Blue – 2015-10-21T05:03:46.983

My last unmovable file is \ProgramData\Microsoft\Diagnosis\events10.rbs$DATA that I guess is some file for Windows installer, but I don't know how to get rid of it. – jarno – 2015-10-31T20:43:10.510

1@jarno, try to disable the DiagTrack service and reboot the system. – Alex Che – 2015-11-02T08:13:19.057

@ToDo, just click on the header called Source and it will sort the events by source, then scroll to see the Defrag events. – jarno – 2015-11-03T18:36:40.757

2It is not necessary to run the defragmentation utility to identify what application or component is preventing your partition to shrink: If you go to the disk management and choose to shrink a partition via right-clicking on the partition, the system analyzes the partition and after that the Defrag event of ID 259 can be found in the log. – jarno – 2015-11-03T18:41:20.683

After disabling DiagTrack service and Search function, the limiting file is $Secure$::$ATTRIBUTE_LIST. This page hints to use a third party partition tool to overcome the issue.

– jarno – 2015-11-03T22:06:23.800

@jarno Seems like Windows build-in defragmentation utility does not use Windows Defragmentation API to defragment NTFS attribute lists. There are several 3rd party defgarmenters which do, but in this case it seems easier to just use a 3rd party partition tool to shrink the partition right away.

– Alex Che – 2015-11-04T07:18:06.947

@AlexChe, Wow, how did you know about the event id 259? – Pacerier – 2016-01-15T19:08:15.847

Great, thanks! In my case it was enough to only disable System Restore (the 2 restore points were the blocking unmovable files) – YakovL – 2017-03-12T16:24:20.990

1And I probably have to provide more insight which I got since the answer was a little misleading for me. Namely, when one disables System Restore, restore points files in System Volume Information are removed and one doesn't have to remove System Volume Information itself (at least in my case). This is important because fsutil tells that the file is inside System Volume Information, but I suggest everybody to try to turn off the listed options first and only then try to remove some files manually. – YakovL – 2017-03-12T17:01:38.947

1I think this answer is technically fully accurate, but involves way too much steps and understanding for the average user that just wants a smaller C: partition. Automatic tools are the way to go IMO. We cannot expect everyone to learn such complicated stuff just to get some more space. It would have been entirely in Microsofts hands to automate this for us but they didn't. The solution is to rely on a free implementation of a good solution (AOMEI for example) rather than hack something like this suggests. Hence the - 1. – masterxilo – 2018-12-22T21:12:09.527

@masterxilo Thanks for the honest opinion. The problem with 3rd party tools in this particular case is that they try to cope with Microsoft's specific software and technologies, which is mostly not open sourced or standardized. So, there is always a potential chance of some change on Microsoft side, which will break the tool. This may cause partition corruption, which may mean data and/or time loss. Actually this is what I've experienced with another recommended 3rd party tool, and it was a reason to fallback to Microsoft native tools. – Alex Che – 2018-12-26T07:47:07.680

Deleting a restore point was enough for me to shrink the windows down by more than 400 GB on a new laptoo with 500 GB ssd – darxtrix – 2019-01-21T08:44:22.043

9

If I was you, I would give Gparted another try, it can be used as a Linux boot disk and can resize disks very well.

If you take a look at the download page, there is a warning with a bug relating to NTFS disks so you may want to try a previous version.

WARNING: Recently there have been several reports of problems when resizing file systems using gparted-live-0.5.0-3. In the case of the NTFS file system, The error message seen after the partition is resized is:

  ERROR: Current NTFS volume size is bigger than the device size!

The problem appears to be related to the combination of packages, Linux kernel, and patches used in the GParted Live image. We are investigating to find the root cause of the problem. Until this problem is solved we recommend GParted Live 0.4-6-1 for resizing all file systems.

William Hilsum

Posted 2009-12-27T14:50:12.040

Reputation: 111 572

1he already did that, but GParted didn't go down too well with his system. – None – 2009-12-27T16:07:30.293

1... I think that was edited after I wrote this as I didn't see that before. – William Hilsum – 2009-12-27T16:29:59.640

Yes, I have the very same error. I didn't see this message when I was downloading GParted. Probably the downgrade will help. And no, it was not edited after you wrote this. – Alex Che – 2009-12-28T10:36:49.257

@Alex, sorry, I must of missed of missed it then, but hopefully this will help. – William Hilsum – 2009-12-28T11:33:20.000

8

First, I would backup the system partition (for example, with Symantec Ghost v11 Enterprise). And for good measure, also image the ENTIRE drive (you can restore much faster than with HP's restore facility).

Then delete the C: drive and create two new partitions to your likings with a partitioning tool of your choice. Then deploy the image of the former C: drive to the first partition.

Molly7244

Posted 2009-12-27T14:50:12.040

Reputation:

1This sounds reasonable. Do you think Ghost will cope with unmovable clusters in the way that will not break Windows? – Alex Che – 2009-12-28T10:22:44.557

yes, Ghost 11 from a BartPE disk will do the job. – None – 2009-12-28T12:10:29.783

1I don't believe it will cope with partition size that is less than the original. – harrymc – 2009-12-28T14:12:31.217

2believe me, Ghost WILL cope with target drives that are smaller than the source drive (unless the ammount of data exceeds the available disk space, that is).say, you have a 450 GB partition and 435 GB are free, then you can clone that partition to a 15 GB partition, no problem. – None – 2009-12-28T14:37:11.300

1@Molly: As this is the system drive, do you know from experience that Ghost can move these unmovable Windows files? – harrymc – 2009-12-28T19:27:24.123

2yep, cloned a 750 GB drive (single partition + reserved) to a 320 GB drive because i needed the big drive elsewhere, no problem. i'm not using bitlocker though, that would a different story altogether. – None – 2009-12-28T19:43:18.317

6

Some Windows files are unmovable and are unhelpfully allocated by Windows at the end or middle of the disk, so that one can only shrink C up to a limit. Which is exactly what you have discovered: The disk cannot be further reduced without destroying Windows.

The only solution is to reinstall Windows in a smaller partition. In your case, you will need to delete the existing system partition and divide it into two partitions via a third-party tool, then restore Windows into the first partition on the disk. Do not touch the restore partition!

I suggest using Paragon Partition Manager 2010 Free Edition as having a good user interface. Otherwise you can use any other tool such as GParted.

harrymc

Posted 2009-12-27T14:50:12.040

Reputation: 306 093

@harrymc, Hmm, this is weird, why would some Windows files be unmovable? What would the logic be for that decision? – Pacerier – 2016-01-15T19:12:12.037

1@Pacerier: For example, the page file - swapping memory to disk is done by the hardware, which does not know anything about NTFS, so this has to be done by physical disk addresses and page file sectors must even be contiguous sequentially on the disk. The page file cannot move, because Windows must be able to swap at all times. – harrymc – 2016-01-15T19:50:53.687

1Thanks for the answer. But after I'd shrunk the partition with GParted, I was not able to do system restore on it for some reason. The only option I had was to do factory restore, which restored the whole HDD image. I'm afraid that your solution may lead to the same. – Alex Che – 2009-12-28T10:29:00.300

3Yes, it certainly will lead to factory restore, but there's no other solution. I only ever found one partition manager that claimed to be able to move these Windows files, and it also destroyed my disk. The best try you can do is turn off the pagefile and system restore and clear the Recycle bin, defragment your disk so as to consolidate free space, and retry resizing. Please note that the Win7 Disk Manager is as good for resizing as any other product - if it can't do it then no other product will without destroying the disk. – harrymc – 2009-12-28T10:52:27.413

4

I've been banging my head for several days in an attempt to shrink a Windows 7 primary partition that hosts the OS. The problem was a set of system files located in the middle of the partition that were excluded during the defragmentation process. Various attempts with several disk partitioning programs, some of which touted their ability to relocate all system files, succeeded in creating only more frustration.

The solution:

Turn off System Recovery. The files that would not relocate during defragmentation were created by that utility and contained all the restore points. When you turn off System Recovery, these files are deleted. Once deleted, Windows 7's Disk Management utility was able to shrink my 259GB C: partition to a bit over 40GB.

Spok

Posted 2009-12-27T14:50:12.040

Reputation: 49

1Exactly how can System Recovery be turned off? – Peter Mortensen – 2014-12-24T08:39:03.037

4

GParted solved my problem! After struggling with unmovable files in the standard Windows Disk Manager I finally used GParted from the Ubuntu 10.04 (Lucid Lynx) live CD. It worked like a charm!

Laurynas

Posted 2009-12-27T14:50:12.040

Reputation: 141

1Did it have any negative side-effects? – jarno – 2015-10-31T18:13:42.567

1As far as I remember - no. – Laurynas – 2015-11-30T13:47:20.023

3

For a bitlocked drive I have successfully used the tool Raxco Perfect Disk 12 (evaluation version).

It contains a defragmentation tool with a 'shrink drive' profile. It can move many unmovable files on the fly. In my case, I needed to schedule it at boot anyway and it did the job. After that, I was able to shrink the drive from the Disk Management console in a standard way.

Advantages:

  • It worked despite the fact that my system drive was bitlocked. Bitlocker would prevent Linux tools I suppose.
  • It did not upset my bitlocker setup. Some tools that do mess with the boot sequence turn on bitlocker recovery mode.
  • It did not require disabling, uninstalling or removing any files.

user377178

Posted 2009-12-27T14:50:12.040

Reputation: 416

I'm not using bitlocker, but for me this was absolutely the simplest solution, worked perfectly first time on a frewsh install of Windows 7 pro. I used the 30-day evaluation of Raxco PerfectDisk v14 Select Drive Preferences, Default optimisation method to "Prep for Shrink" and it moved the tail fragments such that I could have shrunk the drive down to 42Gb. Thanks. – Ed Randall – 2015-07-30T20:33:19.167