PowerShell:如何评估对象中的每个属性?

发布于 2024-11-06 09:58:01 字数 606 浏览 0 评论 0原文

这可以应用于许多不同的场景,但具体来说,我正在运行:

Import-Csv "file.txt" | foreach { $_ }

一般来说,输出是:

Attribute1 : $true
Attribute2 : asdf
Attribute3 : {}
Attribute4 : $true

如何运行 foreach 循环来比较每个属性的名称和值? 例如,请参阅哪个属性等于 $true 但不是 Attribute4。 (我愿意使用 foreach 以外的东西,这就是我所知道的。)

我意识到我可以做 (Import-Csv "file.txt").Attribute1,但我认为对每个属性都这样做是非常不切实际的。

这些属性将是不同类型的变量(一些字符串、一些布尔值、一些数组),但我将一次只回答一个问题。

编辑:
我认为这不相关,但 CSV 文件来自
Get-ActiveSyncMailboxPolicy -Identity“策略”|导出-CSV

This can be applied to many different scenarios, but specifically I am running:

Import-Csv "file.txt" | foreach { $_ }

Generically, the output is:

Attribute1 : $true
Attribute2 : asdf
Attribute3 : {}
Attribute4 : $true

How could I run a foreach loop that I could use to compare each attribute's name and value? For example see which attribute's equal $true but isn't Attribute4. (I'm open to using something other than foreach, that's just all I know.)

I realize that I could do (Import-Csv "file.txt").Attribute1, but I that would be very impractical do this for every attribute.

These attributes will be different types of variables (some strings, some booleans, some arrays) but I'll go one question at a time.

EDIT :
I don't think it's relevant, but the CSV file came from
Get-ActiveSyncMailboxPolicy -Identity "Policy" | Export-Csv

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

向地狱狂奔 2024-11-13 09:58:01

有这样的事吗?

 Import-Csv "file.txt" | foreach-object { 
 $_.psobject.properties | where-object {
 $_.value -eq $true -and $_.name -ne "Attribute4}

Soemthing like this?

 Import-Csv "file.txt" | foreach-object { 
 $_.psobject.properties | where-object {
 $_.value -eq $true -and $_.name -ne "Attribute4}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文