我正在尝试从Get-MsolAccountSku
命令中获取可用的备用许可证数量。
这是代码(下面的输出)
$Licenses = Get-MsolAccountSku
$spare = Foreach ($License in $licenses)
{
($License.ActiveUnits - $License.ConsumedUnits)
}
Get-MsolAccountSku | Select-Object -Property AccountSkuId,ActiveUnits,ConsumedUnits,@{L=’SpareLicenses’;E={$spare}}
ForEach
我想在输出右侧添加一列,以列出循环中减法可用的许可证数量。
ActiveUnits ConsumedUnits
----------- -------------
30 26
1601 1
30 29
25 0
5 3
1 0
12550 12465
1000000 12461
12550 12466
12555 12468
31 19
12550 12464