<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Inside OCS &#187; Administration</title>
	<atom:link href="http://blog.insideocs.com/category/administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.insideocs.com</link>
	<description>Microsoft Office Communications Server - Tips, Tricks, and Insight</description>
	<lastBuildDate>Thu, 26 Jan 2012 20:13:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Migrating your OCS Federated Partner Settings to Lync</title>
		<link>http://blog.insideocs.com/2012/01/24/migrating-your-ocs-federated-partner-settings-to-lync/</link>
		<comments>http://blog.insideocs.com/2012/01/24/migrating-your-ocs-federated-partner-settings-to-lync/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 16:26:25 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Edge]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[microsoft ocs federation migration]]></category>
		<category><![CDATA[Microsoft OCS Lync edge migration]]></category>
		<category><![CDATA[microsoft ocs lync federated partner migration]]></category>
		<category><![CDATA[microsoft ocs lync federation migration]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/2012/01/24/migrating-your-ocs-federated-partner-settings-to-lync/</guid>
		<description><![CDATA[<p>During the edge migration stage of an OCS to Lync migration, you will likely need to re-establish existing OCS federated partner settings on the new Lync Edge pool.</p>
<p>If you have previously established direct federation connections between OCS and many federated partners that you explicitly allow, the thought of having to manually re-enter these federation settings [...]]]></description>
			<content:encoded><![CDATA[<p>During the edge migration stage of an OCS to Lync migration, you will likely need to re-establish existing OCS federated partner settings on the new Lync Edge pool.</p>
<p>If you have previously established direct federation connections between OCS and many federated partners that you <b>explicitly</b> <b>allow</b>, the thought of having to manually re-enter these federation settings in Lync isn’t very appealing.</p>
<p>Whenever a lot of manual administration is required, PowerShell comes to mind. Indeed, in this case it can be used to ease the pain of having to manually retype the federated partner domain, and optionally, the associated edge server FQDN.</p>
<p>In this post I provide a small PowerShell script that you can run on your OCS 2007 R2 Edge server that can be used to export your existing federated partner settings in the format of another PowerShell script that can be run to re-import those settings into Lync. </p>
<p><b>Caveat</b> – <b>your existing OCS partner federation settings could differ slightly. It is important to understand what this script is doing (it is straightforward) and tweak it to your configuration</b>.</p>
<p><a name="_MailAutoSig"></a></p>
<p>The following script runs on the OCS 2007 R2 edge and utilizes WMI – specifically the <a href="http://msdn.microsoft.com/en-us/library/dd146633(v=office.13).aspx">OCS 2007 R2 MSFT_SIPFederationPartnerTable class</a> – to export a list of the federated partner domains:</p>
<blockquote><p>Get-WmiObject -class MSFT_SIPFederationPartnerTable | ForEach-Object </p>
<p>{</p>
<p>&#160;&#160; $domain = [System.String]$_.Domain</p>
<p>&#160;&#160; $edgeProxy = [System.String]$_.EdgeProxyAddress</p>
<p>&#160;&#160; if ($edgeProxy -eq &quot;&quot;)</p>
<p>&#160;&#160; {</p>
<p>&#160;&#160;&#160;&#160;&#160; write-output &quot;New-CsAllowedDomain -Identity `&quot;$domain`&quot; -MarkForMonitoring `$True&quot;</p>
<p>&#160;&#160; }</p>
<p>&#160;&#160; else</p>
<p>&#160;&#160; {</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; write-output &quot;New-CsAllowedDomain -Identity `&quot;$domain`&quot; -ProxyFqdn `&quot;$edgeProxy`&quot; -MarkForMonitoring `$True&quot;</p>
<p>&#160;&#160; }</p>
<p>}</p>
</blockquote>
<p>Save the above script to a PowerShell .ps1 file (e.g. EdgeFed.ps1). To run it in Powershell you will likely first need to set the ExecutionPolicy to allow scripts to run:</p>
<blockquote><p><strong>&gt; Set-ExecutionPolicy Unrestricted</strong></p>
</blockquote>
<p>Invoking this script on the OCS Edge server (e.g. run “.\EdgeFed.ps1” in a PowerShell command window) will produce output similar to the following:</p>
<blockquote><p><i>New-CsAllowedDomain -Identity &quot;contoso.com&quot; -MarkForMonitoring $True</i></p>
<p><i>New-CsAllowedDomain -Identity &quot;fabrikam.com&quot; -ProxyFqdn &quot;im.fabrikam.com&quot; -MarkForMonitoring $True</i></p>
<p><i>.</i></p>
<p><i>.</i></p>
</blockquote>
<p><i></i></p>
<p>The script exports each federated partner setting and formats it into a Lync PowerShell “New-CsAllowedDomain” cmdlet which will add the partner as a new allowed federated domain in Lync.</p>
<p>Pipe the output of this script to another .ps1 file that can used on your Lync Edge (i.e. run “.\EdgeFed.ps1 &gt; LyncFedSettings.ps1”).</p>
<p>To import the allowed federated partners into Lync, put the output file (e.g. LyncFedSettings.ps1) on your Lync Front-End or Edge server and run it in the <b>Lync Management Shell</b>.</p>
<p>You can see the new federated partner allow list with the Get-CsAllowedDomain cmdlet, or in the Lync Control Panel (External User Access | Federated Domains).</p>
<p>If your OCS federated partner settings differ from the explicit allow list method, and you need an automated solution, take a look at the <a href="http://msdn.microsoft.com/en-us/library/dd146501(v=office.13).aspx">WMI Classes for Office Communications Server</a>. There is probably a WMI class that exposes these settings and can be scripted, and you can just modify the script above.</p>
<p><strong>Addition OCS to Lync Migration Articles</strong></p>
<ul>
<li><a href="http://technet.microsoft.com/en-us/library/gg413057.aspx">Microsoft TechNet &#8211; Migration from Office Communications Server 2007 R2 to Lync Server 2010</a> </li>
<li><a href="http://blog.insideocs.com/2011/01/11/lync-ocs-migration-top-10/">InsideOCS &#8211; Lync &amp; OCS Migration Top 10</a> </li>
<li><a href="http://blog.insideocs.com/2011/12/06/quick-tip-external-contacts-with-lync-coexistence/">InsideOCS &#8211; Quick Tip &#8211; External Contacts with Lync Coexistence</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2012/01/24/migrating-your-ocs-federated-partner-settings-to-lync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Key Tips to Get Started with the Lync Monitoring Role &amp; Reports</title>
		<link>http://blog.insideocs.com/2012/01/13/key-tips-to-get-started-with-the-lync-monitoring-role-reports/</link>
		<comments>http://blog.insideocs.com/2012/01/13/key-tips-to-get-started-with-the-lync-monitoring-role-reports/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 19:22:03 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Microosft Lync monitoring credentials]]></category>
		<category><![CDATA[microsoft lync]]></category>
		<category><![CDATA[Microsoft Lync "Exception calling "Create" with "0" argument(s):"]]></category>
		<category><![CDATA[Microsoft Lync 2010 CDR and QoE Reports]]></category>
		<category><![CDATA[Microsoft Lync 2010 Monitoring Service Account]]></category>
		<category><![CDATA[Microsoft Lync CDR not logging]]></category>
		<category><![CDATA[Microsoft Lync Monitoring Report installation]]></category>
		<category><![CDATA[Microsoft Lync Monitoring Reports Empty]]></category>
		<category><![CDATA[Microsoft Lync Monitoring SQL Reporting Services (SRSS)]]></category>
		<category><![CDATA[Microsoft Lync Reporting]]></category>
		<category><![CDATA[Microsoft Lync SQL Reporting Service installation]]></category>
		<category><![CDATA[Reports MSMQ]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1327</guid>
		<description><![CDATA[<p>Recently posted InsideLync.com: Key Tips to Get Started with the Lync Monitoring Role &#38; Reports.</p>
]]></description>
			<content:encoded><![CDATA[<p>Recently posted InsideLync.com: <a href="http://blog.insidelync.com/2012/01/tips-for-getting-started-with-the-lync-monitoring-role-reports/">Key Tips to Get Started with the Lync Monitoring Role &amp; Reports</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2012/01/13/key-tips-to-get-started-with-the-lync-monitoring-role-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lync 2010 Mobility Service and Documentation Available</title>
		<link>http://blog.insideocs.com/2011/12/09/lync-2010-mobility-service-and-documentation-available/</link>
		<comments>http://blog.insideocs.com/2011/12/09/lync-2010-mobility-service-and-documentation-available/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 15:40:26 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Client]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[OCS 2010]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1316</guid>
		<description><![CDATA[<p>Details posted on InsideLync: Lync 2010 Mobility Service and Documentation Available for more information.</p>
]]></description>
			<content:encoded><![CDATA[<p>Details posted on InsideLync: <a href="http://blog.insidelync.com/2011/12/lync-2010-mobility-server-side-and-documentation-available/">Lync 2010 Mobility Service and Documentation Available</a> for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/12/09/lync-2010-mobility-service-and-documentation-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip &#8211; External Contacts with Lync Coexistence</title>
		<link>http://blog.insideocs.com/2011/12/06/quick-tip-external-contacts-with-lync-coexistence/</link>
		<comments>http://blog.insideocs.com/2011/12/06/quick-tip-external-contacts-with-lync-coexistence/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 20:00:14 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Edge]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[microsoft lync ocs coexistence migration contacts]]></category>
		<category><![CDATA[microsoft lync ocs edge services]]></category>
		<category><![CDATA[microsoft lync ocs pic federated user presence]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1312</guid>
		<description><![CDATA[<p>I was involved in a recent Lync migration where a new Lync pool was deployed side-by-side with an OCS 2007 R2 pool. Several pilot users were moved to the new Lync pool and the OCS 2007 R2 edge server was still being used for external Lync and OCS user services.</p>
<p>Everything worked as planned except the [...]]]></description>
			<content:encoded><![CDATA[<p>I was involved in a recent Lync migration where a new Lync pool was deployed side-by-side with an OCS 2007 R2 pool. Several pilot users were moved to the new Lync pool and the OCS 2007 R2 edge server was still being used for external Lync and OCS user services.</p>
<p>Everything worked as planned except the Lync users on the new Lync pool were getting the infamous &#8220;<strong>Presence Unknown</strong>&#8221; for both Public IM (PIC) contacts and their Federated Contacts.</p>
<p>All the basics were checked &#8211; connectivity between the new Lync pool and the OCS 2007 R2 edge, certificates, etc&#8230;, and everything looked okay.</p>
<p>What solved the problem in the end was <strong>rebooting the OCS 2007 R2 edge server</strong>.  After the OCS edge server was rebooted, all of the PIC and Federated contacts for the new Lync pool users started to work.  I am not sure exactly what effect rebooting the edge had, but wanted to pass it along in case it helped someone else.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/12/06/quick-tip-external-contacts-with-lync-coexistence/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Lync Remote PowerShell Administration</title>
		<link>http://blog.insideocs.com/2011/08/18/microsoft-lync-remote-powershell-administration/</link>
		<comments>http://blog.insideocs.com/2011/08/18/microsoft-lync-remote-powershell-administration/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 16:12:58 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Microsoft Lync 2010 Powershell Administration]]></category>
		<category><![CDATA[Microsoft Lync 2010 Remote Powershell]]></category>
		<category><![CDATA[Microsoft Lync Administration 32-bit]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1284</guid>
		<description><![CDATA[<p>A new post on InsideLync.com &#8211; Microsoft Lync Remote PowerShell Administration (http://blog.insidelync.com/2011/08/remote-lync-powershell-administration/).</p>
]]></description>
			<content:encoded><![CDATA[<p>A new post on InsideLync.com &#8211; Microsoft Lync Remote PowerShell Administration (<a href="http://blog.insidelync.com/2011/08/remote-lync-powershell-administration/">http://blog.insidelync.com/2011/08/remote-lync-powershell-administration/</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/08/18/microsoft-lync-remote-powershell-administration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Communicator &amp; Lync Sign-In Troubleshooting Tool (Version 3)</title>
		<link>http://blog.insideocs.com/2011/07/19/communicator-lync-lync-sign-in-troubleshooting-tool-version-3/</link>
		<comments>http://blog.insideocs.com/2011/07/19/communicator-lync-lync-sign-in-troubleshooting-tool-version-3/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 15:30:52 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Client]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[communicator automatic sign in]]></category>
		<category><![CDATA[communicator dns]]></category>
		<category><![CDATA[communicator login]]></category>
		<category><![CDATA[microsoft communicator sign in]]></category>
		<category><![CDATA[microsoft lync automatic sign in]]></category>
		<category><![CDATA[microsoft lync login]]></category>
		<category><![CDATA[microsoft lync sign in dns]]></category>
		<category><![CDATA[microsoft lync _sipinternal]]></category>
		<category><![CDATA[microsoft ocs automatic sign-in]]></category>
		<category><![CDATA[OCS Automatic Sign-In]]></category>
		<category><![CDATA[OCS Certificates]]></category>
		<category><![CDATA[ocs dns]]></category>
		<category><![CDATA[ocs login]]></category>
		<category><![CDATA[Office Communications Server Automatic Client Sign-In]]></category>
		<category><![CDATA[Office Communications Server Certificates]]></category>
		<category><![CDATA[_sipinternaltls]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1252</guid>
		<description><![CDATA[A major upgrade is now available to my popular OCS and Lync Sign-In Troubleshooting Tool. This is a small free tool to help troubleshoot client-side Communicator, and now Lync, sign-in issues (see The OCS 2007 Automatic Sign-In Troubleshooting Tool V2.0 for more information on previous releases).
<p class="MsoNormal">A major upgrade is now available to my popular [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; overflow-x: hidden; overflow-y: hidden; width: 1px; height: 1px; top: 0px; left: -10000px;">A major upgrade is now available to my popular OCS and Lync Sign-In Troubleshooting Tool. This is a small free tool to help troubleshoot client-side Communicator, and now Lync, sign-in issues (see The OCS 2007 Automatic Sign-In Troubleshooting Tool V2.0 for more information on previous releases).</div>
<p class="MsoNormal">A major upgrade is now available to my popular <a href="http://www.insideocs.com/tools/MOCLogin.htm">OCS and Lync Sign-In Troubleshooting Tool</a>. This is a small free tool to help troubleshoot<strong> client-side</strong> Communicator and Lync sign-in issues (see <a href="http://blog.insideocs.com/2009/07/29/the-ocs-2007-automatic-sign-in-troubleshooting-tool-v2-0/">The OCS 2007 Automatic Sign-In Troubleshooting Tool V2.0</a> for more information on previous releases).</p>
<p class="MsoNormal">In addition to several bug fixes, Version 3 of the tool now supports <strong>remotely retrieving certificate information</strong> from the TLS port on the OCS or Lync server where the client will connect (based on the matching returned DNS records).<span style="mso-spacerun:yes"> </span>This will be a major help when trying to debug sign-in issues.</p>
<p class="MsoNormal">You can read more about the tool and download it here: <a href="http://www.insideocs.com/tools/MOCLogin.htm">http://www.insideocs.com/tools/MOCLogin.htm</a></p>
<p class="MsoNormal">Here is a screenshot of the main screen:</p>
<p class="MsoNormal"><img class="alignnone size-full wp-image-1253" title="MOCLoginV3-1" src="http://blog.insideocs.com/wp-content/uploads/2011/07/MOCLoginV3-1.png" alt="MOCLoginV3-1" /></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt">Here is a screen shot of the certificate information that is retrieved remotely, including the Common Name (CN), Subject Name, Issuer, Certificate Authority, Expiry Date, Creation Date, and Subject Alternative Names (SANs):</p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt">
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><img class="alignnone size-full wp-image-1259" title="MOCLoginV3-2" src="http://blog.insideocs.com/wp-content/uploads/2011/07/MOCLoginV3-2.png" alt="MOCLoginV3-2" /></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt">
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt">Thanks to all the users who have reported bugs. Retrieving the installed version of Lync or Communicator now works on x64 along with a few other issues.</p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-size: small;"> </span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin">.</span></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/07/19/communicator-lync-lync-sign-in-troubleshooting-tool-version-3/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>New RoundTable Firmware Upgrade</title>
		<link>http://blog.insideocs.com/2011/06/21/new-roundtable-firmware-upgrade/</link>
		<comments>http://blog.insideocs.com/2011/06/21/new-roundtable-firmware-upgrade/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 17:20:20 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Microsoft RoundTable]]></category>
		<category><![CDATA[Microsoft RoundTable Firmware]]></category>
		<category><![CDATA[Microsoft RoundTable upgrade]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1239</guid>
		<description><![CDATA[<p>A new firmware update for the Microsoft RoundTable was released on June 15, 2011.</p>
<p>You can download it here: http://www.microsoft.com/download/en/details.aspx?id=17500.  It is just over 18 Mb.</p>
<p>The list of issues it addresses can be found in KB article 2559123: http://support.microsoft.com/kb/2559123.</p>
]]></description>
			<content:encoded><![CDATA[<p>A new firmware update for the Microsoft RoundTable was released on June 15, 2011.</p>
<p>You can download it here: <a href="http://www.microsoft.com/download/en/details.aspx?id=17500">http://www.microsoft.com/download/en/details.aspx?id=17500</a>.  It is just over 18 Mb.</p>
<p>The list of issues it addresses can be found in KB article 2559123: <a href="http://support.microsoft.com/kb/2559123">http://support.microsoft.com/kb/2559123</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/06/21/new-roundtable-firmware-upgrade/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Configuring User Federation, Remote Access, and Public IM in Lync</title>
		<link>http://blog.insideocs.com/2011/05/31/configuring-user-federation-remote-access-and-public-im-in-lync/</link>
		<comments>http://blog.insideocs.com/2011/05/31/configuring-user-federation-remote-access-and-public-im-in-lync/#comments</comments>
		<pubDate>Tue, 31 May 2011 20:33:48 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[Microsoft Lync Federation Remote Access PIC]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1236</guid>
		<description><![CDATA[<p>If you have existing scripts for OCS user configuration that are being re-purposed for Lync, this blog post might be helpful: http://blog.insidelync.com/2011/05/configuring-user-federation-remote-access-and-public-im-in-lync/.</p>
]]></description>
			<content:encoded><![CDATA[<p>If you have existing scripts for OCS user configuration that are being re-purposed for Lync, this blog post might be helpful: <a href="http://blog.insidelync.com/2011/05/configuring-user-federation-remote-access-and-public-im-in-lync/">http://blog.insidelync.com/2011/05/configuring-user-federation-remote-access-and-public-im-in-lync/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/05/31/configuring-user-federation-remote-access-and-public-im-in-lync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating OCS 2007 R2 and Polycom Telepresence</title>
		<link>http://blog.insideocs.com/2011/05/06/integrating-ocs-2007-r2-and-polycom/</link>
		<comments>http://blog.insideocs.com/2011/05/06/integrating-ocs-2007-r2-and-polycom/#comments</comments>
		<pubDate>Fri, 06 May 2011 19:43:48 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Conferencing]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[OCS R2]]></category>
		<category><![CDATA[Microsoft OCS 2007 R2 Enhanced Presence]]></category>
		<category><![CDATA[Microsoft OCS 2007 R2 Polycom HDX 8000]]></category>
		<category><![CDATA[microsoft ocs 2007 R2 polycom Telepresence]]></category>
		<category><![CDATA[Microsoft OCS Polycom HDX 8000 Conference Room User]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1214</guid>
		<description><![CDATA[A quick tip to anyone integrating the Polycom HDX 8000 video conferencing unit with Microsoft OCS 2007 R2.
When you create the OCS 2007 R2 user to be used for the Polycom HDX 8000 (aka Conference Room User), a key requirement is that this OCS 2007 R2 user CANNOT be fully enabled for Enhanced Presence (by [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">A quick tip to anyone integrating the Polycom HDX 8000 video conferencing unit with Microsoft OCS 2007 R2.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">When you create the OCS 2007 R2 user to be used for the Polycom HDX 8000 (aka Conference Room User), a key requirement is that this OCS 2007 R2 user CANNOT be fully enabled for Enhanced Presence (by full enabled, I mean that the OCS R2 has the &#8220;Enabled enhanced presence&#8221; checkbox enabled on their account AND have logged in at least once with Office Communicator 2007 or Communicator 2007 R2).</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">The user can have the Enhanced Presence checkbox enabled, they just must not have signed into OCS 2007 R2 with a Communicator 2007, 2007 R2, or Communicator Web Access (in OCS 2007 R2).</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">When you create a new user in OCS 2007 R2 this Enhanced Presence checkbox is enabled by default. The state that the OCS user is in before they sign into OCS at least once with Communcator 2007 or 2007 R2 is referred to as &#8220;Stage 2&#8243; in this blog article which describes the 3 stages an OCS account can exist in regards to enhanced presence: http://blogs.technet.com/b/lync/archive/2008/03/06/differentiating-between-stages-of-enhanced-presence.aspx.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">For the adventurous spirits out there, I attempted to &#8216;revert&#8217; the OCS 2007 R2 Conference Room User from Stage 3 to Stage 2 by changing the associated &#8220;RichMode&#8221; value to False for the user in the OCS database, and this did not work. I believe signing in the first time with Communicator 2007 or 2007 R2 also changes some other settings.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Also, if you encounter this error &#8220;The registrar has rejected the system&#8217;s attempt at registration&#8221;, Jeff Schertz has a good blog write-up on why this could be happening and how to resolve it: http://blog.schertz.name/2011/01/hdx-sip-registration-with-server-2008-r2/.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">For more on integrating the Polycom HDX 8000 with OCS, see the</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Polycom® HDX and RMX™ Systems Integration with Microsoft Office Communications Server 2007 Deployment Guide</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://downloads.polycom.com/bridging_collab/rmx/relnotes/OCS_Deployment.pdf</div>
<p>A quick tip to anyone integrating a <a href="http://www.polycom.com/products/telepresence_video/telepresence_solutions/room_telepresence/index.html">Polycom Room Telepresence</a> solution (e.g. the HDX series) with Microsoft OCS 2007 R2.</p>
<p>If you are having trouble signing into OCS 2007 R2 with the OCS conference room user on the Polycom unit, read-on, and consider upgrading the software on the Polycom.</p>
<p>Older Polycom software had a requirement that the OCS 2007 R2 user used with the Polycom unit (aka &#8216;Conference Room User&#8217;) <strong>COULD NOT </strong>be fully enabled for Enhanced Presence. By &#8220;fully enabled&#8221; I mean that the &#8220;Enabled enhanced presence&#8221; check-box was enabled on the OCS account AND the account has been logged into at least once with Office Communicator 2007, Communicator 2007 R2, or Communicator Web Access.</p>
<p>Once the OCS 2007 R2 conference room user was enabled for enhanced presence and had logged into OCS 2007 R2 at least once, the Polycom unit could not sign-in.</p>
<p>Enhanced Presence is supported on newer software releases for the HDX units (for awhile now). Recent Polycom support guides and software downloads can be found at the <strong>bottom </strong>of this page: <a href="http://support.polycom.com/PolycomService/support/us/support/strategic_partner_solutions/microsoft_software_download.html">http://support.polycom.com/PolycomService/support/us/support/strategic_partner_solutions/microsoft_software_download.html</a>.</p>
<p>The latest version of the Microsoft UC Integration Guide that covers both Lync and OCS is available here: <a href="http://support.polycom.com/global/documents/support/setup_maintenance/products/video/Deploying_Visual_Comm_Admin_Guide_WV4.pdf">http://support.polycom.com/global/documents/support/setup_maintenance/products/video/Deploying_Visual_Comm_Admin_Guide_WV4.pdf.</a></p>
<p>Some older Polycom guides still show in Internet searches and are out-of-date, such as this one:  the <a href="http://downloads.polycom.com/bridging_collab/rmx/relnotes/OCS_Deployment.pdf">Polycom® HDX and RMX™ Systems Integration with Microsoft Office Communications Server 2007 Deployment Guide</a>.</p>
<p><span style="text-decoration: underline;">A Refresher on the Multiple States of Enhanced Presence</span>: When a new user is created in OCS 2007 R2 the Enhanced Presence checkbox is enabled by default. The state that the OCS user is in before they sign into OCS at least once with Communicator 2007 or 2007 R2 is referred to as &#8220;Stage 2&#8243; in this good blog article which describes the 3 different stages an OCS account can exist in regards to enhanced presence: <a href="http://blogs.technet.com/b/lync/archive/2008/03/06/differentiating-between-stages-of-enhanced-presence.aspx">http://blogs.technet.com/b/lync/archive/2008/03/06/differentiating-between-stages-of-enhanced-presence.aspx</a>.</p>
<p><strong>Tip</strong>: For the adventurous spirits out there, I attempted to &#8216;revert&#8217; an OCS 2007 R2 Conference Room User from Stage 3 to Stage 2 by changing the associated &#8220;RichMode&#8221; value to False in the OCS database, and this did <strong>not </strong>work. I believe signing in the first time with Communicator 2007 or 2007 R2 must also change other settings which cannot be reverted.</p>
<p>Also, if you encounter this error &#8220;<em><span style="text-decoration: underline;">The registrar has rejected the system&#8217;s attempt at registration</span></em>&#8220;, Jeff Schertz has a good blog write-up on why this could be happening and how to resolve it: <a href="http://blog.schertz.name/2011/01/hdx-sip-registration-with-server-2008-r2/">http://blog.schertz.name/2011/01/hdx-sip-registration-with-server-2008-r2/</a>.</p>
<p>For more on OCS 2007 R2 Enhanced Presence see the InsideOCS blog post: <a href="http://blog.insideocs.com/2009/11/02/enhanced-presence-and-upgrading-communicator-clients/">Enhanced Presence and Upgrading Communicator Clients</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/05/06/integrating-ocs-2007-r2-and-polycom/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New OCS 2007 R2 Updates &amp; Microsoft Federated Edge Server IP Address Change</title>
		<link>http://blog.insideocs.com/2011/03/11/new-ocs-2007-r2-updates-microsoft-federated-edge-server-ip-address-change/</link>
		<comments>http://blog.insideocs.com/2011/03/11/new-ocs-2007-r2-updates-microsoft-federated-edge-server-ip-address-change/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 19:44:01 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Communicator]]></category>
		<category><![CDATA[Edge]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[OCS R2]]></category>
		<category><![CDATA[communicator 2007 r2 march 2011 update]]></category>
		<category><![CDATA[microsoft 2007 r2 march 2011 update]]></category>
		<category><![CDATA[microsoft communicator 2007 r2 march 2011 update]]></category>
		<category><![CDATA[microsoft communicator 2007 r2 update]]></category>
		<category><![CDATA[Microsoft federation update]]></category>
		<category><![CDATA[Microsoft ocs 2007 r2 cu8 update]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1179</guid>
		<description><![CDATA[<p>A new round of OCS 2007 R2 client and server updates were released today – collectively known as OCS 2007 R2 Cumulative Update 8 (CU 8).  Note: some links will not be available until late next week.</p>
Client Updates



Office   Communicator 2007 R2
KB Article 2501722
Microsoft   Download Link


Group Chat   Client 2007 R2
KB [...]]]></description>
			<content:encoded><![CDATA[<p>A new round of OCS 2007 R2 client and server updates were released today – collectively known as OCS 2007 R2 Cumulative Update 8 (CU 8).  Note: some links will not be available until late next week.</p>
<h2>Client Updates</h2>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="233" valign="top"><span style="color: #000000;">Office   Communicator 2007 R2</span></td>
<td width="180" valign="top"><a href="http://support.microsoft.com/kb/2501722">KB Article 2501722</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=515d6dba-4c6a-48bb-a06a-d99c5742676d">Microsoft   Download Link</a></td>
</tr>
<tr>
<td width="233" valign="top">Group Chat   Client 2007 R2</td>
<td width="180" valign="top"><a href="http://support.microsoft.com/kb/2491979">KB Article 2491979</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=e5924bf9-b042-4c53-b4a6-79c7e5c9749b&amp;displaylang=en">Microsoft   Download Link</a></td>
</tr>
<tr>
<td width="233" valign="top">Group Chat   Admin 2007 R2</td>
<td width="180" valign="top"><a href="http://support.microsoft.com/kb/2502323">KB Article 2502323</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=e5924bf9-b042-4c53-b4a6-79c7e5c9749b&amp;displaylang=en">Microsoft   Download Link</a></td>
</tr>
<tr>
<td width="233" valign="top">Attendant   Console 2007 R2</td>
<td width="180" valign="top"><a href="http://support.microsoft.com/kb/2502321">KB Article 2502321</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=36beb56d-072e-4a92-b781-a1e8a548a5ac">Microsoft   Download Link</a></td>
</tr>
<tr>
<td width="233" valign="top">UCMA Redist   2007 R2</td>
<td width="180" valign="top"><a href="http://support.microsoft.com/kb/2501720">KB Article 2501720</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/en/confirmation.aspx?FamilyID=1f565a42-71d2-4fbd-8ae0-4b179e8f02ab">Microsoft   Download Link</a></td>
</tr>
<tr>
<td width="233" valign="top">OcsAdoption   Tool 2007 R2</td>
<td width="180" valign="top"><a href="http://support.microsoft.com/kb/2501718">KB Article 2501718</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=92020e20-2d80-4e2a-bdf5-a75b2dadacbf">Microsoft   Download Link</a></td>
</tr>
</tbody>
</table>
<p>Note: the updates will appear in Microsoft Update on April 26, 2011.</p>
<h2>Server Updates</h2>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="263" valign="top">Office Communications Server 2007 R2</td>
<td width="150" valign="top"><a href="http://support.microsoft.com/kb/968802">KB   Article 968802</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=b3b02475-150c-41fa-844a-c10a517040f4">Microsoft   Download Link</a></td>
</tr>
<tr>
<td width="263" valign="top">Database Upgrade</td>
<td width="150" valign="top"><a href="http://support.microsoft.com/kb/2512777">KB   Article 2512777</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=b3b02475-150c-41fa-844a-c10a517040f4">Microsoft   Download Link</a></td>
</tr>
<tr>
<td width="263" valign="top">Group Chat Server 2007 R2</td>
<td width="150" valign="top"><a href="http://support.microsoft.com/kb/2491973">KB   Article 2491973</a></td>
<td width="186" valign="top"><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=e5924bf9-b042-4c53-b4a6-79c7e5c9749b&amp;displaylang=en">Microsoft   Download Link</a></td>
</tr>
</tbody>
</table>
<p>If you are unsure what updates you have installed on your servers, Jens Trier Rasmussen has made a script available that should help you identify which update you have installed:</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Script to see highest version of a component installed on a OCS/Lync server (Cumulative Update)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://blogs.technet.com/b/jenstr/archive/2011/03/10/script-to-see-highest-version-of-a-component-installed-on-a-ocs-lync-server.aspx</div>
<ul>
<li><a href="http://blogs.technet.com/b/jenstr/archive/2011/03/10/script-to-see-highest-version-of-a-component-installed-on-a-ocs-lync-server.aspx">Script to see highest version of a component installed on a OCS/Lync server (Cumulative Update)</a></li>
</ul>
<h2>Microsoft Federated Edge Server IP Address Change March 18, 2011</h2>
<p>If you are federated with Microsoft and have done so using the IP address of their Edge server, you will want to read this:  <a href="http://blogs.technet.com/b/nexthop/archive/2011/03/08/microsoft-federated-edge-server-ip-address-change-march-11-2011.aspx">http://blogs.technet.com/b/nexthop/archive/2011/03/08/microsoft-federated-edge-server-ip-address-change-march-11-2011.aspx</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/03/11/new-ocs-2007-r2-updates-microsoft-federated-edge-server-ip-address-change/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

