Hi,
You can add a calculated property using a hashtable.
$DAServers = "server1", "Server2"
$AllConnections = @()
foreach ( $a in $DAServers){
$AllConnections += get-RemoteAccessConnectionStatisticsSummary -ComputerName $a |
select TotalConnections, MaxConcurrentConnections,TotalCumulativeConnections, @{n="ComputerName";e={$a}}
}
$Allconnections | fl
Best Regards,
Ian Xue
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.