How will I do this in powershell. I like to check which process/application is using the file, so that I can close it.

Thanks.

link|improve this question

70% accept rate
feedback

2 Answers

up vote 5 down vote accepted

You can do this with the SysInternals tool handle.exe. Try something like this:

PS> $handle = handle
PS> foreach ($line in $handle) { 
        if ($line -match '\S+\spid:') {
            $exe = $line
        } 
        elseif ($line -match 'C:\\Windows\\Fonts\\segoeui\.ttf')  { 
            "$exe - $line"
        }
     }
MSASCui.exe pid: 5608 ACME\hillr -   568: File  (---)   C:\Windows\Fonts\segoeui.ttf
...
link|improve this answer
1  
Thanks, I can just use handle [filename], to make it simpler. – Marc Vitalis Jun 8 '09 at 16:04
Where's the fun in that? :-) But yeah, that would be much simpler. – Keith Hill Jun 8 '09 at 16:32
:( still having problems though. . . it's not that powerful to show if there files (i.e. text files) opened by a certain process. – Marc Vitalis Jun 9 '09 at 22:48
handle is an external tool though unfortunately – George Mauer Sep 14 '10 at 15:22
handle /dir worked for me. then I killed the process in task manager that was locking the folder. – Josiah Ruddell Jan 4 at 16:56
feedback

You should be able to use the openfiles command from either the regular command line or from powershell.

EDIT: The openfiles built-in tool can be used for file shares or for local files. For local files, you must turn on the tool and restart the machine (again, just for first time use). I believe the command to turn this feature on is: openfiles /local on

Eg (works on Vista x64):

openfiles /query | find "chrome.exe"

That successfully returns file handles associated with Chrome. You can also pass in a file name to see the process currently accessing that file.

link|improve this answer
From what I see that command simply enumerates files that are opened by a user from remote via SMB shares. It won't tell you anything about the process using it. – Joey Jun 5 '09 at 23:39
You can't tell it from the link, but it looks like Johannes is right. It doesn't work on Vista x64 for me -- says "INFO: No shared open files found." – Joe White Jun 8 '09 at 13:06
Joe/Johannes: First, do you have the global "maintain objects list" turned on (I think the syntax is "openfiles /local on" IIRC)? Next, are you passing in the "/query" argument, as in the example above (req'd for Vista, it seems)? – Garrett Jun 9 '09 at 13:29
feedback

Your Answer

 
or
required, but never shown

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