Forum
Merhabalar Exchange 2007 den 2010 ona yukseltme yaptık, hersey normal fakat Default global adress listte yeni oluştudrduğum kullanıcıları göremiyorum, Outlook chache modunda açtım haftalar geçmesine rağmen yeni kullanıcılar bu adres defterinde görünmüyor hatta silmiş olduğum kullanıcılar bu listede görünüyor, Yeni bir Global adres listesi oluşturdum farklı isimle, var olan Defaul glabal adress list i silsem sorun yaşarmıyım yada bu problemi nasıl aşabilirim, deneyimi olan arkadaşlardan yardm istiyorum
merhabalar
eski sunucuya ait olan adres listelerini 2010'a upgrade etmeyi deneyin.
Now update all the address lists and the global address list(s). The following address lists are present by default :
· All Users
· All Groups
· All Contacts
· Public Folders
· All Rooms
The Address list “All Rooms” is the only one created by Exchange 2007, so this one doesn’t have to be upgraded. For all the others type in the powershell :
Set-AddressList “All Users” -IncludedRecipients MailboxUsers
Set-AddressList “All Groups” -IncludedRecipients MailGroups
Set-AddressList “All Contacts” -IncludedRecipients MailContacts
Set-AddressList “Public Folders” -RecipientFilter { RecipientType -eq ‘PublicFolder’ }
The last step is to update the Default Global Address List. This can be done by typing the following in the powershell :
Set-GlobalAddressList “Default Global Address List” -RecipientFilter {(Alias -ne $null -and (ObjectClass -eq ‘user’ -or ObjectClass -eq ‘contact’ -or ObjectClass -eq ‘msExchSystemMailbox’ -or ObjectClass -eq ‘msExchDynamicDistributionList’ -or ObjectClass -eq ‘group’ -or ObjectClass -eq ‘publicFolder’))}