How would I pipe the information I've pulled out from a spreadsheet into a Powershell object?
$rangeAddr=$startCell + ":" + $endCell
$sh.Range($rangeAddr).Value2 | foreach {
New-Object PSObject -Property @{"Build"=$sh.Name;"AppName"=$_;}
}