I had to get SID for all Users that
Get-ADUser -Filter {Name -like "pa*"} | Select Name,SID | Format-Table -Auto
For all Groups that Name begin with pa
Get-ADGroup -Filter {Name -like "pa*"} | Select Name,SID | Format-Table -Auto
For all Computers that Name begin with pa
Get-ADComputer -Filter {Name -like "pa*"} | Select Name,SID | Format-Table -Auto