Forum

Skype aramalarında ...
 
Bildirimler
Hepsini Temizle

[Çözüldü] Skype aramalarında görünmeme

2 Yazılar
2 Üyeler
0 Likes
467 Görüntüleme
(@muratuzun-2)
Gönderiler: 577
Noble Member
Konu başlatıcı
 

Merhaba,

 

bir gruba üye kişilerin skype search'de çıkmaması için birşey yapılabilir mi? Bu yapılabiliyorsa outlook aramalarında sorun yaşar mıyız?

 
Gönderildi : 14/10/2022 08:58

Hakan Uzuner
(@hakanuzuner)
Gönderiler: 32965
Illustrious Member Yönetici
 

Merhaba,

Evet gizleyebilirsiniz ama bu outlook aramalarında da gizlenmesi demektir.

SfB On-Premise is making use of the Exchange GAL.

If you don't want users or other resources to appear in address book / GAL search in the Skype for Business client there is an easy way. Hiding contacts from GAL, by changing an AD related attribute. This could be e.g. hiding Helpdesk Team Members

 

This is the Exchange attribute for hiding users from the Global Address List (GAL). If this is set to TRUE, which indicates it doesn’t need to appear on the GAL, Lync will also ignore this user for the Address Book.

This sets the attribute "msExchHideFromAddressLists" to True.

It also clears the attribute "ShowinAddressBook" 

This is the Script:

$users = Get-CsAdUser -Filter {name -Like "*HelpDesk*"}

foreach ($object in $users)

    {

      Set-ADObject -Add @{msExchHideFromAddressLists=$true} -Identity $object.DistinguishedName

      Set-ADObject –clear ShowinAddressBook -Identity $object.DistinguishedName

  }

 

In this example i hide all the "HelpDesk" users from showing up in address book search.

You can change the filter to an OU too.

 

After running the script the objects will no longer show when you do an address book search in your Skype4B or Lync client.

 

Alternative ABSConfig.exe (SfB Resource Kit):

https://technet.microsoft.com/de-DE/library/jj945604.aspx

 

Alternative 2:

https://docs.microsoft.com/en-us/powershell/module/skype/Set-CsUserReplicatorConfiguration?view=skype-ps

 

You could move users into a different OU, which should be hidden and force the CsUserReplicatorConfiguration to run only on specific OUs (DN).

Set-CsUserReplicatorConfiguration -Identity global -ADDomainNamingContextList @{Add="dc=fabrikam,dc=com"}

Kaynak

Thomas Poett

Web sitesi eski olduğu için muhtemel bir iki yıl sonra bu linke bakın dediğim link çalışmayacağı için içeriği kopyaladım.

Danışman - ITSTACK Bilgi Sistemleri
****************************************************************
Probleminiz Çözüldüğünde Sonucu Burada Paylaşırsanız.
Sizde Aynı Problemi Yaşayanlar İçin Yardım Etmiş Olursunuz.
Eğer sorununuz çözüldü ise lütfen "çözüldü" olarak işaretlerseniz diğer üyeler için çok büyük kolaylık sağlayacaktır.
*****************************************************************

 
Gönderildi : 14/10/2022 13:11

Paylaş: