SyntaxFix
Write A Post
Hire A Developer
Questions
If the goal simply is to list all computer objects with an empty description attribute try this
import-module activedirectory $domain = "domain.example.com" Get-ADComputer -Filter '*' -Properties Description | where { $_.Description -eq $null }