• That does get them, but also returns the PK, which in my case I want to ignore.

    I was hoping there was some property or combination of properties in SMO.... And I just found it:

    $t.Indexes | ? {$_.IndexKeyType -eq "DriUniqueKey"}

    Thanks!

    Paul