本文介绍了使用PowerShell脚本检查锁定文件的应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在PowerShell中,如何检查应用程序是否锁定了文件?
Using in PowerShell, how can I check if an application is locking a file?
我想检查哪个进程/应用程序正在使用该文件,以便可以将其关闭.
I like to check which process/application is using the file, so that I can close it.
推荐答案
您可以使用 SysInternals工具handle.exe .尝试这样的事情:
You can do this with the SysInternals tool handle.exe. Try something like this:
PS> $handleOut = handle
PS> foreach ($line in $handleOut) {
if ($line -match '\S+\spid:') {
$exe = $line
}
elseif ($line -match 'C:\\Windows\\Fonts\\segoeui\.ttf') {
"$exe - $line"
}
}
MSASCui.exe pid: 5608 ACME\hillr - 568: File (---) C:\Windows\Fonts\segoeui.ttf
...
这篇关于使用PowerShell脚本检查锁定文件的应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!