Hello Hashim, i'm Timon and i'm glad to help you.
You can try with this:
Disabled Users:
Search-ADAccount -AccountDisabled -UsersOnly | Select-Object SamAccountName, DistinguishedName | Export-CSV “C:\Temp\DisabledUsers.CSV” -NoTypeInformation
Expired Users:
Search-ADAccount -AccountExpired -UsersOnly | Select-Object SamAccountName, DistinguishedName | Export-CSV “C:\Temp\ExpiredUsers.CSV” -NoTypeInformation