Recipe4.20.Finding the Process That Has a File Open


Recipe 4.20. Finding the Process That Has a File Open

Problem

You want to find the process or processes that have a file open. This is often necessary if you want to delete or modify a file, but are getting errors because it is in use by another process.

Solution

Using a graphical user interface

  1. Open the Sysinternals Process Explorer (procexp.exe) tool.

  2. Click the Find icon (binoculars) or select Search

    Beside Handle substring, enter the name of the file and click Search.

Using a command-line interface

Use the Sysinternals handle.exe command to view the processes that have a lock on a file:

> handle <FileName>

This example commands shows all the processes that have a handle to the personal.pst file:

> handle personal.pst

Using VBScript
' This code prints the output from the handle.exe command ' ------ SCRIPT CONFIGURATION ------ strFilePattern = "<FileName>" ' e.g., personal.pst strHandleExec = "handle.exe"  ' If handle.exe isn't in your PATH, you will                               ' need to specify the full path. ' ------ END CONFIGURATION --------- set objWshShell = CreateObject("WScript.Shell") set objExec = objWshShell.Exec(strHandleExec & " " & strFilePattern) do while not objExec.StdOut.AtEndOfStream     WScript.Echo objExec.StdOut.ReadLine( ) loop

Discussion

Processes running on your system are constantly opening and closing files (see Recipe 4.21 for more on how to see this activity). When a process accesses a file, the process is said to have a handle to the file. Processes can also have handles to other system resources, such as Registry keys and values. For certain types of file accesses, a process may obtain an exclusive lock on the file (such as when it needs to write to the file), which means no other processes can modify the file; you may still be able to read the file, but you won't be able to overwrite, move, or delete it.

This may be a bit annoying if there is a file you need to do something with. You have a couple of options. First, if you determine the process that has a handle to the file is not important, you could try to kill it (see Recipe 6.3). This will often remove the lock on the file, but this isn't the most graceful approach. If you just want to replace the file, another option entails following the instructions in Recipe 4.16, which will replace a file after the next reboot.

See Also

Recipe 4.16, Recipe 4.21, Recipe 6.2, and MS KB 242131 (How to: Display a List of Processes That Have Files Open)



Windows Server Cookbook
Windows Server Cookbook for Windows Server 2003 and Windows 2000
ISBN: 0596006330
EAN: 2147483647
Year: 2006
Pages: 380
Authors: Robbie Allen

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net