$A = Get-ADuser [user] -properties * | Select Name,SamAccountName,Enabled.
If I try to use $A.SamAccountName, it fails.
but
If I do this: $A = Get-ADuser [user] -properties *
I can execute a command and use, for example, $A.Name (or any other property) and it woks
Hi Paul...GO PACK GO!