场景:我使用Select-Object访问管道对象的属性,其中一个属性本身就是一个对象。我们称之为PropertyObject。我想访问PropertyObject的属性,比如说Property1。是否有任何好的和干净的访问Property1的方式,沿着:
...| select-object PropertyObject.Property1
在进行实验时,如果我执行以下操作,我只能让它工作:
...| select-object {$_.PropertyObject.Property1}
如果我想用一个像样的列名显示它,它会变得更加混乱:
...| select-object @{Name="Property1"; Expression={$_.PropertyObject.Property1}}
鉴于PowerShell的整洁程度如何简洁明了,我无法想到我错过了一些东西,应该有一种更清晰的方式来访问一个属性的属性。有吗?
编辑:根据Matt的要求,以下是具体示例:
我正在阅读一个XML文件,Books3.xml:
<?xml version="1.0"?>
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date inprint="false">2000-10-01</publish_date>
<description>An in-depth look at creating applications
with XML.</description>
<publisher>
<name>Simon and Schuster</name>
<country>USA</country>
<city>New York</city>
</publisher>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date inprint="true">2000-12-16</publish_date>
<description>A former architect battles corporate zombies,
an evil sorceress, and her own childhood to become queen
of the world.</description>
<publisher>
<name>HarperCollins</name>
<country>USA</country>
<city>New York</city>
</publisher>
</book>
<book id="bk103">
<author>Corets, Eva</author>
<title>Maeve Ascendant</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date inprint="false">2000-11-17</publish_date>
<description>After the collapse of a nanotechnology
society in England, the young survivors lay the
foundation for a new society.</description>
<publisher>
<name>Macmillan</name>
<country>United Kingdom</country>
<city>London</city>
</publisher>
</book>
</catalog>
将XML加载到XmlDocument中的代码:
$filePath = "C:\Temp\books3.xml"
$xmlDoc = new-object xml
$xmlDoc.load($filePath)
试图阅读每本书的详细信息:
$xmlDoc.catalog.book | select author, title, publisher.name
结果:
author title publisher.name
------ ----- --------------
Gambardella, Matthew XML Developer's Guide
Ralls, Kim Midnight Rain
Corets, Eva Maeve Ascendant
答案 0 :(得分:22)
您可以使用calculated properties。简短表格可以实现这一点:
$xmlDoc.catalog.book | select author, title, {$_.publisher.name}
如果属性名称很重要,则需要将它们添加进去。
$xmlDoc.catalog.book | select author, title, @{N="PublisherName";E={$_.publisher.name}}
其中N是名称的缩写,E是表达的缩写。
答案 1 :(得分:6)
如果你有一些实际可重复的东西供我们测试会更容易,但我们可以用Get-Item
返回来伪造它。
(Get-Item C:\temp\logoutput).Parent.Name
.Parent
实际上是System.IO.DirectoryInfo
个对象。我使用PowerShell 3.0点表示法来获取name
parent
通过链接select
调用
Get-Item C:\temp\logoutput | select -expand Parent | Select -Expand name
这当然适用于PowerShell 2.0,但不是简洁版和3.0版。
发布问题编辑
不确定你希望的是什么。你所拥有的工作以你拥有它的方式提取子属性。我只能提供一种可能更直观和友好的替代方法,但结果是一样的。
$xml.catalog.book | ForEach-Object{
$_ | Add-Member NoteProperty "PublisherName" $_.publisher.name -PassThru}
当然,您可能仍需要使用select
将输出限制为所需的属性,但这是另一种选择。
答案 2 :(得分:0)
我也在寻找如何完成对象子属性的选择。在我的情况下,它是为了导出DNS服务器的区域数据。我会分享我用来完成目标的内容,这篇文章在这里有所帮助!
要按照以下方式执行您要查找的内容:
$xmlDoc.catalog.book | Select Author, Title, -Expand Publisher | Select Author, Title, Name | Sort Author | FT -auto
根据您提供的表格输出,上面应该有效。它对我有用,你将在下面看到。
这个脚本非常适合我需要的东西,并且融合了不同的想法。希望它适用于其他人。
$Zones = @(Get-DnsServerZone)
ForEach ($Zone in $Zones) {
Write-Host "`n$($Zone.ZoneName)" -ForegroundColor "Yellow"
$Data = New-Object System.Object
$Data = $Zone | Get-DnsServerResourceRecord
$Data | Add-Member -MemberType NoteProperty -Name "ZoneName" -Value $Zone.ZoneName
$Data += $Data
$Data | Select-Object ZoneName, HostName, RecordType -Expand RecordData | Select ZoneName, HostName, RecordType, IPv4Address, HostNameAlias, NameServer, PrimaryServer, ExpireLimit, MinimumTimeToLive, RefreshInterval, ResponsiblePerson, RetryDelay, SerialNumber, DomainName, Port, Priority, Weight | Sort RecordType, HostName | Export-Csv -NoTypeInformation "$($Zone.ZoneName).csv"
}
当您在导出前查看输出时,黄色前景非常方便。只需将}
放在HostName
之后和| Export-Csv
之前:... Sort RecordType, HostName }