Users that were created in the past have Home Directories, but in some cases they do not map the drives at Login.
In Users and Computers console, the Drive letter is selected, but in Administrative Center the field is blank.
In PowerShell
$users=get-aduser -filter {HomeDrive -eq '*' } -SearchBase $ou -Properties HomeDrive, HomeDirectory
Produces lower case 'z' for HomeDirectory for users who have nothing listed in Administrative Center (while Users and Computers shows 'Z:' selected). Changing the drive letter in Users and Computers produces a correction everywhere, including when it
is changed back to "Z:".
What could explain this inconsistency?