Return PowerShell 数组中单列的值

Return Values of Single Column in PowerShell Array

我正在为 DPM 创建一个 PowerShell 脚本,它输出异地就绪的磁带。下面的代码需要几秒钟来完成 DPM 连接和 return 查询,这很好。

# Connect to local DPM server
$DPMServer = $env:COMPUTERNAME
Connect-DPMServer -DPMServerName $DPMServer | Out-Null

# Get the DPM libary
$DPMLib = Get-DPMLibrary

#Format output
$Formatting = @{Expression={$_.Barcode}; Label="Barcode "; Width=12}, 
     @{Expression={"{0:MM/dd/yyyy HH:mm tt}" -f $_.CreationDate}; Label="Creation Date      "; Width=23}, 
     @{Expression={$_.DisplayString}; Label="Tape Label              "; Width=28}, 
     @{Expression={"{0,15:N0}" -f $_.DataWrittenDisplayString}; Label="Data Written   "}

#Calculate Monday at midnight of this week
$Monday = (Get-Date).AddDays((-1 * (Get-Date).DayOfWeek.Value__) + 1).Date

# Get specific tapes
$Tapes = Get-DPMTape -DPMLibrary $DPMLib | 
    Where-Object {$_.Barcode -notlike "CLN*"} |
    Where-Object {$_.DisplayString -notlike "Free"} |
    Where-Object {$_.CreationDate -gt $Monday} |
    Sort-Object Barcode |
    Format-Table -Property $Formatting

Write-Host "`nOffsite Ready Tapes:" -ForegroundColor Cyan

#Output tapes
$Tapes

输出如下:

我的问题是我现在如何 select 只列出 $Tapes 数组中的条形码,并将它们(低于我已有的)输出为逗号分隔列表,而不 运行ning再次查询 DPM。我尝试了各种方法都没有成功,我遗漏了一些明显的东西。

如果我与 DPM 建立第二个连接,我可以这样做,但我试图避免将 运行 所需的时间加倍。这是我正在努力改进的原始新手脚本的一部分。

# Define DPM server to connect to
$DPMServer = $env:COMPUTERNAME
Connect-DPMServer -DPMServerName $DPMServer | Out-Null

# Get the DPM libary
$DPMLib = Get-DPMLibrary

# Get tape display strings and barcodes, sort by barcode
$Tapes = Get-DPMTape -DPMLibrary $DPMLib | Select-Object CreationDate, DisplayString, Barcode | Sort-Object Barcode

# Create empty array
$DPMTapesForOffsite = @()

Write-Host "`nOffsite Ready Tapes:`n" -ForegroundColor Cyan

foreach ($_ in $Tapes) {
    # Exclude cleaning tapes
    if ($_.Barcode -notlike "CLN*") {
        # Exclude marked as free
        if ($_.DisplayString -notlike "Free") {
            $TimeStamp = Get-Date $_.CreationDate
            # Timestamp is from this week
            if ($Timestamp -gt $Monday) {
                $DPMTapesForOffsite = $DPMTapesForOffsite + $_.barcode
                Write-Host $_.barcode
            }
        }
    }
}

# Format tape list as comma delimited
$DPMTapesForOffsite = $DPMTapesForOffsite -join ","

我遗漏了一些明显的内容,我们将不胜感激。

# Omit Format-Table initially, so as to store actual *data* in $tapes,
# not *formatting instructions*, which is what Format-* cmdlets return.
$tapes = Get-DPMTape -DPMLibrary $DPMLib | 
    Where-Object {$_.Barcode -notlike "CLN*"} |
    Where-Object {$_.DisplayString -notlike "Free"} |
    Where-Object {$_.CreationDate -gt $Monday} |
    Sort-Object Barcode

# Now you can apply the desired formatting.
Write-Host "`nOffsite Ready Tapes:" -ForegroundColor Cyan
$tapes | Format-Table -Property $Formatting

# Thanks to PowerShell's member-access enumeration feature,
# accessing property .Barcode on the entire $tapes *collection* 
# conveniently returns its *elements'* property values.
# -join ',' joins them with commas.
$tapes.Barcode -join ','

Format-* cmdlet 输出对象,其唯一目的是向 PowerShell 的输出格式化系统提供 格式化指令 - 请参阅 this answer.
简而言之:仅使用 Format-* cmdlet 来格式化数据 以供显示 ,永远不要用于后续 程序化处理 .

This answer 解释了 成员访问枚举