Powershell — объединение нескольких команд

#powershell #office365 #powershell #office365 Вопрос: Get-MsolSubscription дает мне общее количество лицензий $Result="" $Results=@() $Subscriptions= Get-MsolSubscription | foreach{ $SubscriptionName=$_.SKUPartNumber $SubscribedOn=$_.DateCreated $ExpiryDate=$_.NextLifeCycleDate $Status=$_.Status $TotalLicenses=$_.TotalLicenses $Result=@{'Subscription Name'=$SubscriptionName;'Total Licenses'=$TotalLicenses} $Results = New-Object PSObject -Property…

Продолжить чтениеPowershell — объединение нескольких команд