我在访问PSObject
定义了 NoteProperties 的 s 时遇到了困难,它们正在通过Invoke-Command
. 我为此目的构造一个对象的原因是我需要访问远程会话中的两条单独的信息,但 PowerShell 只提供一个InputObject
.
我的代码看起来像这样:
$sessionInput = new-object -TypeName System.Object
$sessionInput | Add-Member -MemberType NoteProperty -Name NoteProperty1 -Value @("some", "value")
$sessionInput | Add-Member -MemberType NoteProperty -Name NoteProperty2 -Value @("some", "other", "value)
$session = New-PSSession -ComputerName my-computer -Credential (Get-Credential)
Invoke-Command -Session $session -InputObject $sessionInput {
$input #1
$input | Get-Member #2
$input.NoteProperty1 #3
$input.NoteProperty1 | Get-Member #4
}
对于上面的每个编号行,我得到以下输出。
1.$input
因此,首先我尝试了将变量转储到控制台的常用技术,这证实了属性以预期值传递:
NoteProperty1 : {some, value}
NoteProperty2 : {some, other, value}
PSComputerName : my-computer
RunspaceId : d1f35c8b-f631-4caa-bae0-f7c0066bbd55
PSShowComputerName : True
2.$input | Get-Member
这比之前的尝试产生了更多的信息:
TypeName: Deserialized.System.Object
WARNING: column "PSComputerName" does not fit into the display and was removed.
Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString(), string ToString(string format, System.IFormatProvider formatProvider)
NoteProperty1 NoteProperty Deserialized.System.String[] NoteProperty1=some val...
NoteProperty2 NoteProperty Deserialized.System.String[] NoteProperty2=some oth...
请注意,最后两行清楚地表明 NoteProperty 存在于远程会话接收的对象上。所有这些提到Deserialized
都开始激起我的兴趣......
3.$input.NoteProperty1
在前两个运气好之后,我开始尝试检查NoteProperty1
自己。但是,此属性的值似乎为 null;使用上面的行没有将任何内容写入控制台,$input.NoteProperty1 -eq $null
返回 True。
4.$input.NoteProperty1 | Get-Member
因此,最后,我尝试NoteProperty1
通过 直接检查该值Get-Member
,但失败并显示消息“没有为 get-member cmdlet 指定对象。”,这与传递给 Get-Member 的空对象一致。
帮助!
所以,我现在完全不知所措:这个薛定谔属性既存在又不存在;都有期望值,没有值。我想我可以用一种稍微不同的方式来写这个,这样就不需要 NoteProperties,但我很想知道这里发生了什么!