Better use this which makes use of the attribute pwdlastset (which gets replicated alright across all DCs)
Import-Module ActiveDirectory
$date = [DateTime]::Today.AddDays(-60)
$pcs = Get-ADComputer -Filter 'PasswordLastSet -le $date' -properties PasswordLastSet
foreach ($pc in $pcs) {
$dn = $pc.DistinguishedName
$ldPath = "AD:\",$dn -join ""
if ((Get-ChildItem $ldPath | where {$_.objectClass -eq "msFVE-RecoveryInformation"}) -eq $null) {echo $pc.name}}