读取列由excehell通过powershell阅读此链接
link1
linke2
这个简单的脚本用于在所有分区中查找特定名称
$name = Read-Host "which name you want find"
Get-PSDrive | where { $_.Provider -match "FileSystem"} | select Root | foreach { Get-ChildItem $_.Root -Recurse -Name $name -ErrorAction 'SilentlyContinue' }
如果您不想要求用户输入文件名,您可以更改脚本