Find out who is locking a file on a network share - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:52:45Z http://stackoverflow.com/feeds/question/581219 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/581219/find-out-who-is-locking-a-file-on-a-network-share 2 Find out who is locking a file on a network share olorin 2009-02-24T10:19:20Z 2009-10-12T11:38:14Z <p>I want to known who is locking a file on a network share.</p> <p>Here is the problem : the network share is on a NAS, so I can't log on. I need a tool to find out remotely who is locking the file. It is not practical to reboot the NAS every time, because there are several users.</p> <p><a href="http://stackoverflow.com/questions/241178/command-line-tool-for-finding-out-who-is-locking-a-file">Handle.exe</a>, Process Explorer and <a href="http://stackoverflow.com/questions/208283/is-it-possible-to-programatically-find-out-what-process-is-locking-a-file-acros">PsFile</a> seems to be limited to files on the local machine, so they don't work for me.</p> http://stackoverflow.com/questions/581219/find-out-who-is-locking-a-file-on-a-network-share/581291#581291 2 Answer by asdf for Find out who is locking a file on a network share asdf 2009-02-24T10:46:10Z 2009-02-24T10:46:10Z <p>The sessions are handled by the NAS device. What you are asking is dependant on the NAS device and nothing to do with windows. You would have to have a look into your NAS firmware to see to what it support. The only other way is sniff the packets and work it out yourself.</p> http://stackoverflow.com/questions/581219/find-out-who-is-locking-a-file-on-a-network-share/581459#581459 0 Answer by Javier for Find out who is locking a file on a network share Javier 2009-02-24T11:40:59Z 2009-02-24T11:40:59Z <p>sounds like you have the same problem i tried to solve <a href="http://stackoverflow.com/questions/142007/force-a-samba-process-to-close-a-file">here</a>. in my case, it's a Linux fileserver (running samba, of course), so i can log in and see what process is locking the file; unfortunately, i haven't found how to close it without killing the responsible session. AFAICT, the windows client 'thinks' it's closed; but didn't bother telling the fileserver.</p> http://stackoverflow.com/questions/581219/find-out-who-is-locking-a-file-on-a-network-share/581641#581641 0 Answer by olorin for Find out who is locking a file on a network share olorin 2009-02-24T12:53:57Z 2009-02-24T12:53:57Z <p>Partial answer: With Process Explorer, you can view handles on a network share <strong>opened from your machine</strong>.</p> <p>Use the Menu "Find Handle" and then you can type a path like this </p> <pre><code>\Device\LanmanRedirector\server\share\ </code></pre> http://stackoverflow.com/questions/581219/find-out-who-is-locking-a-file-on-a-network-share/1554071#1554071 0 Answer by Dirk Paessler for Find out who is locking a file on a network share Dirk Paessler 2009-10-12T11:38:14Z 2009-10-12T11:38:14Z <p>Just in case someone looking for a solution to this for a Windows based system or NAS:</p> <p>There is a built-in function in Windows that shows you what files on the local computer are open/locked by remote computer (which has the file open through a file share):</p> <ul> <li>Select "Manage Computer" (Open "Computer Management") </li> <li>click "Shared Folders"</li> <li>choose "Open Files"</li> </ul> <p>There you can even close the file forcefully.</p>