Check out the most comprehensive, actively managed Lync blog roll in the known universe, your one-stop source for links to over 100 of the very best Lync blogs. Here you will also find weekly blog highlights and a feed for a dozen of the top blogs.
Lync Server Support Home
Top Lync Solutions RSS Feed
Microsoft Senior Support engineers walk you through real-life support cases, giving you an insider’s view into the systematic approach they use to troubleshoot Lync Server issues.
These short videos focus on specific tasks and show you how to accomplish them for Microsoft Lync Server 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
#Define WMI Put options
$PutOptions = New-Object System.Management.PutOptions
$PutOptions.Type = 2 #CreateOnly
#Get User Information
$User = Get-WmiObject -Query "Select * from MSFT_SIPESUserSetting where PrimaryURI = 'sip:user@domain.com'"
#Create ContactGroup instance
$ContactGroup = (New-Object System.Management.ManagementClass("MSFT_SIPESUserContactGroupData")).CreateInstance()
$ContactGroup.UserInstanceID = $User.InstanceID
$ContactGroup.Name = "NAME OF GROUP HERE"
$ContactGroup.ExternalURL = "<groupExtension groupType=`"dg`"><email>group@domain.com</email></groupExtension>"
#Create and commit group
$ContactGroup.PsBase.Put($PutOptions)