Looking at this URL:
http://social.technet.microsoft.com...hell+Forum This works:
Start-Job -ScriptBlock {powershell.exe -NoProfile -command {
Function GetRes($ComputerName)
{
$StrActiveClientLogons = get-wmiobject -Class Win32_PerfFormattedData_MSExchangeIS_MSExchangeISMailbox -Namespace ROOT\CIMV2 -ComputerName $Computername | Select-Object __SERVER,Name,ActiveClientLogons
$StrActiveClientLogons | Select-Object `
@{Label='ComputerName';Expression={$_.__SERVER}},
@{Label='SG Name';Expression={$_.Name}},
@{Label='Active Logons';Expression={$_.ActiveClientLogons}}
}
"Server01","Server02","Server03" | %{GetRes $_}
}
}