Posts from May 28, 2026

How to Create a List of Disabled Users from Active Directory

  Get-ADUser -Filter {Enabled -eq $false} -Properties DisplayName | Export-Csv -Path “C:\work\disableduser.csv” -NoTypeInformation     To create[…]