up vote 3 down vote favorite
share [g+] share [fb]

When I defragment my XP machine I notice that there is a block of "Unmovable Files". Is there a file attribute I can use to make my own files unmovable?

Just to clarify, I want a way to programmatically tell Windows that a file that I create should be unmovable. Is this possible, and if so, how can I do it?

Thanks,

Terry

link|improve this question

75% accept rate
feedback

9 Answers

up vote 7 down vote accepted

A lot of system files cannot be moved after the system boots, such as the page file and registry database files.

This utility runs before Windows boots to defragment those files. I have it set to run at every boot, and it works well for me on several machines.

Note that the very first time you boot up with this utility set to run, it may take several minutes to defrag. After that first run though, it finishes in just 3 or 4 seconds.

Edit0: To respond to your clarification- that link says windows has marked the page file and registry files as open for exclusive access. So you should be able to do the same thing with the LockFile API Call. However, that's not an attribute of the file itself. You'd have to actually run some background program that locks the file for exclusive access.

link|improve this answer
If it fails to defrag any of the files PageDefrag will keep trying with each boot and can take a while, hence its option to run once. This doesn't mean it's not a great tool and I heartily recommend it. +1 from me. – Dave Webb Sep 9 '08 at 15:49
feedback

This usually means that the file is in use by some process. If you're defragmenting, you'll likely see this with a lot of system files. If the file should legitimately be movable and is stuck (it's being held by a process that runs at startup but shouldn't be, for example), the most useful way of resolving the problem is to remove all permissions on the file, reboot, restore the permissions, and then get rid of the file/run the program that's trying to use it.

link|improve this answer
feedback

I suppose the ugly way is to have an application boot on startup, check every few seconds if defrag is running and if so open the file in exclusive mode.

This is really ugly and I don't recommend it unless there is no cleaner solution.

link|improve this answer
feedback

Terry, the answers all mention ways to prevent files from becoming unmovable during defragmentation. From your question it appears that you are in fact wanting to make your personal files unmovable. Can you please clarify what is appealing about making your files unmovable.

link|improve this answer
feedback

There are no file attributes that you can place on your files to mark them as immovable. The only way that a file cannot be moved (I think) during defragmentation is to have some other process have the file open (for read or write, I'm not even sure that you need to have the file open in exclusive mode or not).

Quite frankly, I cannot think of a reason that you'd want your files not to move, unless you have specific requirements about where on the disk platter your files reside. Defragmentation should generally lead to faster disk access and that seems to be desireable in all cases :-)

link|improve this answer
feedback

I assume you're using the defragger that comes with Windows. Some commercial ones like DiskKeeper can move some of these files (usually system files). You can try their trial versions.

link|improve this answer
feedback

Contig might serve your purpose http://technet.microsoft.com/en-us/sysinternals/bb897428.aspx

I'm relatively certain I ran across some methods/attributes you could access programatically to do exactly what you want. This was back in NT4 days though and my memory isn't that good.

link|improve this answer
feedback

For a little more complete solution try Raxco's PerfectDisk. While it is a commercial product it does a very good job and supports boot time defrag of system files. The first defrag takes longer than say DiskKeeper but its a single pass defragger and supports defragging with very little free space left on the drive. Overall its a much smarter defrag program then any other I've seen and supports systems of any size.

http://www.raxco.com/

link|improve this answer
feedback

first try to move(or delete) the files within safe mode. If can not, try to move(or delete) the files with linux.

But be careful if those are the windows system files, then you are failed to boot up your windows.

Some reason why the files are unmovable are : the file size is too big, the files are being in open/in use condition, insufficient security privileges, being access by other computer/s, and many other things.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.