Command-line tool for finding out who is locking a file - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:56:56Zhttp://stackoverflow.com/feeds/question/241178http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/241178/command-line-tool-for-finding-out-who-is-locking-a-file4Command-line tool for finding out who is locking a file JesperE2008-10-27T19:46:43Z2008-10-28T14:00:05Z
<p>I would like to know who is locking a file (win32). I know about <a href="http://www.dr-hoiby.com/WhoLockMe/" rel="nofollow">WhoLockMe</a>, but I would like a <strong>command-line tool</strong> which does more or less the same thing.</p>
<p>I also looked at <a href="http://stackoverflow.com/questions/208283/is-it-possible-to-programatically-find-out-what-process-is-locking-a-file-acros">this question</a>, but it seems only applicable for files opened remotely.</p>
http://stackoverflow.com/questions/241178/command-line-tool-for-finding-out-who-is-locking-a-file/241187#2411878Answer by fhe for Command-line tool for finding out who is locking a file fhe2008-10-27T19:49:16Z2008-10-27T19:49:16Z<p><a href="http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx" rel="nofollow">Handle</a> should do the trick.</p>
http://stackoverflow.com/questions/241178/command-line-tool-for-finding-out-who-is-locking-a-file/241188#2411884Answer by webclimber for Command-line tool for finding out who is locking a file webclimber2008-10-27T19:49:25Z2008-10-27T19:49:25Z<p>handle.exe
<a href="http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx</a></p>
<p>THis has helped me sooooo many times....</p>
http://stackoverflow.com/questions/241178/command-line-tool-for-finding-out-who-is-locking-a-file/243440#2434400Answer by Marc for Command-line tool for finding out who is locking a file Marc2008-10-28T14:00:05Z2008-10-28T14:00:05Z<p>You don't neeed anything (if you're a programmer...)
. Just enumerate the handles and get the pid.</p>