Powershell - 如何编辑自定义对象中的现有属性

时间:2015-04-15 07:45:07

标签: powershell edit psobject

我正在寻找如何在现有的psobject中更新noteproperty,例如我有psobjects($ a)的system.array:

Group                                Assigment
-----                                ---------
Group1                               Home
Group2                               Office

问题是如何将'Home'更新为其他内容。

$ a | GM:

TypeName: System.Management.Automation.PSCustomObject

Name        MemberType   Definition
----        ----------   ----------
Equals      Method       bool Equals(System.Object obj)
GetHashCode Method       int GetHashCode()
GetType     Method       type GetType()
ToString    Method       string ToString()
Assigment   NoteProperty System.String Assigment=Office
Group       NoteProperty System.String Group=Group1

$ a.GetType():

IsPublic IsSerial Name                                     BaseType
-------- -------- ----                                     --------
True     True     Object[]                                 System.Array

感谢您将来的帮助。

2 个答案:

答案 0 :(得分:5)

不清楚你的问题是什么:选择好的对象或更新它的价值?

$col=@() 
$props=@{"group"="group1";"assignment"="home"}
$col += new-object pscustomobject -property $props
$props2=@{"group"="group2";"assignment"="office"}
$col += new-object pscustomobject -property $props2

#select object with home assignment
$rec=$col | where {$_.assignment -eq "home"}
#replace the value
$rec.assignment="elsewhere"

#display collection with updated value
$col

答案 1 :(得分:0)

但是,如果$ rec返回多条记录,我认为这不起作用 例如:

$rec = $col | where {$_.assignment -ne $null}
$rec.assignment = "elsewhere"

理论上应该将每个单独记录的赋值设置为“其他地方”,但它实际上只返回一个错误,即在此对象上找不到属性“赋值”。我认为这需要你真正需要的工作:

$recs = $col | where {$_.assignment -ne $null}
foreach ($r in $recs) {
 $r.assignment="elsewhere"
}

除非有办法为给定数组中的每个记录设置一个值,我可以自由地承认这个值。