I\'m using powershell to get the Status/Availability of certain users by using the following code:
Import-Module \"C:\\...\\Microsoft.Lync.Model.dll\"
$Clie
Only workaround I have found is to create a conversation with the target user like this
$client = [Microsoft.Lync.Model.LyncClient]::GetClient()
$contact = $client.ContactManager.GetContactByUri($email)
$convo = $client.ConversationManager.AddConversation()
$convo.AddParticipant($contact) | Out-Null
Write-Host $contact.GetContactInformation("Activity")
$convo.End() | Out-Null
It doesn't appear to cause any IM windows to popup on the users side.
It would be interesting to see your powershell code for the subscription solution