I sync the "Description in AD to the "Server Comment" on the local box.
Here is a snippet of Code:

$ADProp = GetObject('LDAP://'+$RC[3])
$ADdesc = $ADProp.get('description')
If $Comment <> '' and $ADdesc <> $Comment
$ADProp.put('description',$comment)
$ADProp.setinfo
$ADProp = ''
$ADdesc = $Comment
endif
If $ADdesc <> '' and $Comment <> $ADdesc
$adsComputer = GetObject('WinNT://' + $Comp + '/LanmanServer')
$adsComputer.Description = $ADdesc
$adsComputer.SetInfo
$adsComputer = ''

_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.