PowerShell 技能连载 - 通过 Index Search 搜索文件
Windows 索引服务能够对您的用户数据文件进行索引,并且在文件资源管理器中快速搜索。以下是一个基于内容返回文件的函数:
1 | function Search-FileContent ([String][Parameter(Mandatory)]$FilterText, $Path = $home ) |
要使用它,请指定一个关键字。以下代码返回所有包含该关键字的文件:
1 | PS> Search-FileContent -FilterText testcase -Path C:\Users\tobwe\Documents\ |
如你快速发现的,Index Search 并不会返回 PowerShell 脚本(*.ps1 文件)。缺省情况下,PowerShell 脚本并没有被索引。如果您希望通过内容搜索到这些文件,请到 Index Service 设置并且包含 PowerShell 脚本。点击这里了解更多:https://devblogs.microsoft.com/scripting/use-windows-search-to-find-your-powershell-scripts/
PowerShell 技能连载 - 通过 Index Search 搜索文件
http://blog.vichamp.com/2019/05/29/searching-files-using-index-search/