I have a PowerShell script that executes a SQL command and returns a list of ID numbers.
When I iterate through the list, this is what it returns.
System.Data.DataRow
System.Data.DataRow
System.Data.DataRow
System.Data.DataRow
System.Data.DataRow
System.Data.DataRow
I tried adding Out-String to my list,
$q_result = $db.ExecuteWithResults($int_cmd2)
$table = $q_result.Tables[0] | Out-String
foreach ($user_info in $table)
{
write-host $user_info
}
but that returns a poorly formatted list of numbers, everything is tabbed to the far right:
GroupID
-------------
381
382
383
384
385
386
I tried using, $user_info.Item[0] in the loop, but that returns nothing.
How can I extract just the numbers from the list?
