gpt4 book ai didi

Powershell:Where-Object 通配符

转载 作者:行者123 更新时间:2023-12-04 00:47:37 30 4
gpt4 key购买 nike

我想在 Active Directory 用户的所有属性中搜索特定电话号码/分机号。

我可以像这样获取所有属性:

get-aduser joesmith -Properties *

但我想过滤结果,例如分机号 1234(可能在很多地方,例如 extensionAttribute1、OfficePhone、HomePhone、Mobile 等)。

我试过:

get-aduser joesmith -Properties * | where-object {$_ -like "*1234*" }

但是where-object要的是$_.value,我不知 Prop 体值。

我应该如何搜索多个属性的值?我希望看到如下结果:

mobile        1234
officephone 12345
othermobile 61234

最佳答案

要遍历您不知道名称的属性的值(即 OfficePhone、CustomAttribute2、mobile),您可以使用以下方法:

get-aduser joesmith -Properties * | foreach-object { 
foreach ($property in $_.PSObject.Properties) {
if ($property.value -like "*1234*") {
"$($property.name) $($property.value)"
}
}
}

关于Powershell:Where-Object 通配符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22794693/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com