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.
| |||
|
feedback
|
|
You can do this with the SysInternals tool handle.exe. Try something like this:
| |||||||||||||
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: 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. | |||||||
feedback
|