我正在Get-ChildItem
通过如下一些指令将数据从 csvWhere-Object
推送到 csv。Select-Object
问题是 csv 的第一行包含Select
子句本身(例如字面意思{ “This part” + $_.AndThisBit }
。不知道为什么我的部分代码泄漏到数据中?
Get-ChildItem "E:\Some\Path" -Recurse -Include *.msg, *.eml |
Where-Object { $_.Name.StartsWith("Confidential") -eq $false } |
Select-Object { "Fixed-prefix*" + $_.FullName } |
Export-Csv -Path "C:\another\path\Results.csv" -NoTypeInformation