我尝试使用 sort-object cmdlet 按 ID 对进程进行排序:
Get-Process | Sort-Object -Property Id
它运作良好。在我发现的任何其他示例中,排序都可以正常工作,但是当我尝试使用 Active Directory 中的员工 ID 对员工进行排序时:
Get-QADUser -IncludeAllProperties -SerializeValues | ? {?_.Mail} | select employeeID | sort-object -property employeeID
我得到这样的东西:
11 1104 1105 1185 119 12 ...