Category: Lync

Find Lync user with specific Line Uri

Quick tip of the day! Tried this one?   Get-CsUser –Filter {LineUri –eq “TEL:+3581234567”} And got error: It won’t work. Try this one. Get-CsUser | Where-Object {$_.LineUri -like “TEL:+3581234567”} | ft -property DisplayName, LineURI And all is well!

Continue Reading Find Lync user with specific Line Uri

Lync and IIS ARR (Application Routing Request)

Hi all, Glad to see many has found my blog and that is why it’s nice to share things 🙂 Yesterday I installed an reverse proxy with IIS AAR 3.0 on Windows Server 2012 R2. Word of advice on this…

Continue Reading Lync and IIS ARR (Application Routing Request)

Lync 2013 Response Groups Usage Report not working.

Lync 2013 Monitoring is great … well when it works 🙂 Today one customer wanted to open Response Group Usage Report and got nothing after 15 minutes on waiting. The reason was a broken index in lcscdr database. And the…

Continue Reading Lync 2013 Response Groups Usage Report not working.

Lync and Exchange Web Services (EWS) and different DNS Domains- Exchange crawling e.g. for presence

Source: http://lyncuc.blogspot.fi/2013/01/lync-and-exchange-web-services-ews-and.html there is always confusion in how Lync is crawling Exchange Web Services (EWS). Generally it is necessary to understand how DNS must be implemented: Just remember, identify if you have DNS Split configuration, different internal and external DNS…

Continue Reading Lync and Exchange Web Services (EWS) and different DNS Domains- Exchange crawling e.g. for presence

TrustModelData: registry keys for the Lync Clients.

And Hi, Excellent article on TrustModelData by Terence Luk: http://terenceluk.blogspot.fi/2013/02/location-of-trustmodeldata-registry-key.html Location of the “TrustModelData: registry key for the Lync 2013 Client Those who are familiar with the certificate warning message: Lync cannot verify that the server is trusted for your…

Continue Reading TrustModelData: registry keys for the Lync Clients.

Can’t change Office 2013 shortcut locations in the Office Customization Tool

Well this is annoying. When try to modify Skydrive or Lync shortcuts or even add a desktop shortcut they wont work. Hopefully there is a workaround for this. Add [ to Start In -box … like this: And you have…

Continue Reading Can’t change Office 2013 shortcut locations in the Office Customization Tool

Remote powershell to Lync 2010 / 2013 FE

Connet session: $cred = Get-Credential domainusername $session = New-PSSession -ConnectionURI “https://LYNCFE.FQDN/OcsPowershell” -Credential $cred Import-PsSession $session Disconnect session: Get-PSSession | Remove-PSSession

Continue Reading Remote powershell to Lync 2010 / 2013 FE