PowerShell 技能连载 - 按属性值分割结果

如果您使用 PowerShell 远程操作来接收远程机器的信息,您可以指定多个计算机名(扇出)。PowerShell 会自动逐台访问所有的机器,这样可以节省很多时间(当然,这些操作的前提是设置并启用了 PowerShell,这里不再赘述)。

返回的结果顺序是随机的,因为所有被访问的机器都会在它们准备好数据的时候返回各自的信息。

要将结果数据按每台机器分割,请使用 Group-Object 命令:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$pc1 = $env:computername
$pc2 = '192.168.2.112'

$code =
{
Get-Service | Where-Object Status -eq Running
}

# get all results
$result = Invoke-Command -ScriptBlock $code -ComputerName $pc1, $pc2

# separate per computer
$groups = $result | Group-Object -Property PSComputerName -AsHashTable
$groups

# access per computer results separately
$groups.$pc1
$groups.$pc2

当您指定了 -AsHashTable 参数时,Groutp-Object 创建了一个以计算机名为键的哈希表。通过这种方法,您可以并发执行操作以节约时间,并仍然按每台机器来区分数据。

PowerShell 技能连载 - 按属性值分割结果

http://blog.vichamp.com/2016/12/13/separating-results-by-property-value/

作者

吴波

发布于

2016-12-13

更新于

2022-07-06

许可协议

评论