Blog Post

Skype for Business Blog
1 MIN READ

Check if a Contact Exists

NextHop_Team's avatar
NextHop_Team
Brass Contributor
May 20, 2019
First published on TECHNET on Nov 12, 2010


For more information on using this script, see the article Adminstratively Managing User Contact Lists by Nick Smith.



#Contributed by Nick Smith, Microsoft

#Supported Versions: Office Communications Server 2007 R2

#Get User Information

$User = Get-WmiObject -Query "Select * from MSFT_SIPESUserSetting where PrimaryURI = ' sip:user@domain.com '"

$UserInstanceID = $User .InstanceID

#Check if contact is already added to user's contact list

$Contact = ( Get-WmiObject -Query "Select * from MSFT_SIPESUserContactData where UserInstanceID = '$UserInstanceID'" | Where { $_ .SIPURI -like "sip: userToCheck@domain.com " })

if ( $Contact -ne $null ) { #The contact is on the user's contact list

Write-Host "The contact exists on the user's contact list"

}

elseif ( $Contact -eq $null ) { #The contact is not on the user's contact list

Write-Host "The contact does not exist on the user's contact list"

}


Updated May 20, 2019
Version 2.0
No CommentsBe the first to comment