如何使用Powershell在特定文件夹中搜索具有特定字符串的.xls文件?

时间:2019-05-09 10:49:16

标签: powershell search output unique

我需要在包含特定单词'FY1819'的文件夹中找到所有文件。我需要.txt中的唯一列表。 (如果一个文件多次包含此单词,则此文件应仅在列表中出现一次)。 此时我的代码:

Get-ChildItem  -Path:"C:\\FolderName\Specific folder" -Include *.xls, *.xlsx, *.xlsb -Recurse -Unique | Select-String pattern FY1819

0 个答案:

没有答案