次のワンライナーを使用して、無効になっておらず、アカウントの有効期限が切れているユーザーのリストを、いくつかのプロパティとともに取得しています。
Get-ADUser -Filter {(Enabled -eq $true) -and (accountExpires -ne 0)} -Properties name, mail, c, physicalDeliveryOfficeName, telephoneNumber, manager, title, description | select-object name, mail, c, physicalDeliveryOfficeName, telephoneNumber, manager, title, description
示されているようにアカウントの有効期限が切れている人だけでなく、ドメイン内のすべての人を取得することを除いて、機能します。スクリプトの accountExpires 部分を無視するのはなぜですか?