Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When we push changes out to file shares, occasionally a user will leave an application open, which in turn keeps a file open from the share - it's locked and we cannot replace it. I would like to find the sharing sessions corresponding to such files and kill them (this is read-only stuff, mainly .DLL files) in a PowerShell script before overwriting the files.

This is identical to locating the files that are open in the Shared Folders MMC, then closing the corresponding sessions there, but I need to do it programatically, and remotely, for multiple servers.

share|improve this question
possible duplicate of Determine Users Accessing a Shared Folder Using PowerShell – Richard May 4 '12 at 7:09

1 Answer

What's wrong with net file /close?

share|improve this answer
Is there a way to do that remotely for a bunch of machines, other than tricks like psexec or PowerShell remoting? – onupdatecascade May 9 '12 at 21:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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