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.
|
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. |
|||
|
|
|
You can do this with the SysInternals tool handle.exe. Try something like this:
|
|||||||||||||
|
|
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: Eg (works on Vista x64):
That successfully returns file handles associated with Chrome. You can also pass in a file name to see the process currently accessing that file. |
|||||||
|
|
If you modify the above function slightly like below it will return True or False (you will need to execute with full admin rights) e.g. Usage:
|
||||
|
|
|
This could help you: Use PowerShell to find out which process locks a file. It parses the System.Diagnostics.ProcessModuleCollection Modules property of each process and it looks for the file path of the locked file. |
|||
|
|
|
I've seen a nice solution at http://mspowershell.blogspot.com.es/2008/07/locked-file-detection.html that uses only Powershell and .Net framework classes:
|
|||
|
|