HP Scripting Tools for Windows PowerShell User Guide: OA cmdlets

Get-HPOAPower -Verbose
$EncInfo
Script output:
The following is typical output from this script.
Warning : It might take a while to search all the HP OA servers if the input is a
very large range. Use Verbose for more information.
VERBOSE: Using 6 threads for search
VERBOSE: Pinging 192.168.242.60
VERBOSE: Pinging 192.168.242.61
VERBOSE: Pinging 192.168.242.62
VERBOSE: Pinging 192.168.242.63
VERBOSE: Pinging 192.168.242.64
VERBOSE: Pinging 192.168.242.65
VERBOSE: No OA at 192.168.242.60
VERBOSE: No system responds at 192.168.242.61
VERBOSE: No system responds at 192.168.242.65
VERBOSE: Using 3 threads
IP : 192.168.242.62
Hostname : eastwind.company.net
StatusType : OK
StatusMessage : OK
PowerMode : Not Redundant
DynamicPower : Enabled
SetPowerLimit : Not Set
PowerCapacity : 4800 Watts DC
PowerAvailable : 4193 Watts DC
PowerAllocated : 607 Watts DC
PresentPower : 218 Watts AC
PowerLimit : 5837 Watts AC
IP : 192.168.242.63
Hostname : westwind.company.net
StatusType : OK
StatusMessage : OK
PowerMode : Not Redundant
DynamicPower : Enabled
SetPowerLimit : 12000 Watts AC
PowerCapacity : 9860 Watts DC
PowerAvailable : 8384 Watts DC
PowerAllocated : 1476 Watts DC
PresentPower : 914 Watts AC
PowerLimit : 12000 Watts AC
IP : 192.168.242.64
Hostname : southwind.company.net
StatusType : OK
StatusMessage : OK
PowerMode : Redundant
DynamicPower : Disabled
SetPowerLimit : Not Set
PowerCapacity : 1674 Watts DC
PowerAvailable : 0 Watts DC
PowerAllocated : 1674 Watts DC
PresentPower : 1043 Watts AC
PowerLimit : 2036 Watts AC
The verbose output shown indicates that six threads are being used for Find-HPOA, which lists
each address being checked, and then three threads in the Get-HPOAPower command. (This
threading enables multiple commands to multiple OAs to be sent at the same time.) The pipeline
then sends to Add-Member twice and for each item adds the Username and Password
parameters to the returned objects that represent the OAs found. These are piped to Connect-HPOA
which makes the connection object array of the three OAs found.
Those are in turn passed through to Get-HPOAPower which uses those connections and requests
the power information from each OA. The final results are the power information for the three OAs
Piping output from one command to another 15