I need to obtain the User's SID's out of AD, but my script exits the loop
after the echo statement during the first loop thru and doesn't return and
presents a exit code of '0', which is success (which its not).

Any other ideas??

I obtained the following code from:
http://msdn2.microsoft.com/en-us/library/aa746535.aspx and
http://msdn2.microsoft.com/en-us/library/aa746409.aspx

Set objUser = GetObject("WinNT://" & strFQ_DomainName & "/" &
objRecordSet.Fields("sAMAccountName"))
arrUserSID = objUser.Get("ObjectSID")
intElements = UBound(arrUserSID)

Wscript.echo intElements ---> outputs 27, which is correct

For intCounter = 0 to intElements
wscript.echo "Loop: " & intCounter
strUserSID = arrUserSID(intCounter)
Next