Summary: List all users who do not have a photo assigned in Active Directory.
Is there a simple way that I can use Windows PowerShell to identify users who do not have a photo assigned in Active Directory?
Target the ThumbnailPhoto property, and filter the users for Null:
GET-ADUSER –filter * -properties ThumbnailPhoto | Where { $_.ThumbnailPhoto –eq $NULL }