<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Inside OCS</title>
	
	<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>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/InsideOCS" /><feedburner:info uri="insideocs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>InsideOCS</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Migrating your OCS Federated Partner Settings to Lync</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/MiWngVFvhQc/</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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=MiWngVFvhQc:R7DaYoOXja8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=MiWngVFvhQc:R7DaYoOXja8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=MiWngVFvhQc:R7DaYoOXja8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=MiWngVFvhQc:R7DaYoOXja8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=MiWngVFvhQc:R7DaYoOXja8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=MiWngVFvhQc:R7DaYoOXja8:V_sGLiPBpWU" border="0"></img></a>
</div>]]></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>
		<feedburner:origLink>http://blog.insideocs.com/2012/01/24/migrating-your-ocs-federated-partner-settings-to-lync/</feedburner:origLink></item>
		<item>
		<title>Key Tips to Get Started with the Lync Monitoring Role &amp; Reports</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/7ApumYJ3Rcc/</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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=7ApumYJ3Rcc:xvxhLZ69BLw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=7ApumYJ3Rcc:xvxhLZ69BLw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=7ApumYJ3Rcc:xvxhLZ69BLw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=7ApumYJ3Rcc:xvxhLZ69BLw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=7ApumYJ3Rcc:xvxhLZ69BLw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=7ApumYJ3Rcc:xvxhLZ69BLw:V_sGLiPBpWU" border="0"></img></a>
</div>]]></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>
		<feedburner:origLink>http://blog.insideocs.com/2012/01/13/key-tips-to-get-started-with-the-lync-monitoring-role-reports/</feedburner:origLink></item>
		<item>
		<title>Microsoft Lync 2010 for the iPhone and iPad Released</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/RWWusAjJQXc/</link>
		<comments>http://blog.insideocs.com/2011/12/20/microsoft-lync-2010-for-the-iphone-and-ipad-released/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 15:06:02 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft Lync 2010 iPhone iPad]]></category>
		<category><![CDATA[Microsoft Lync Mobile]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1323</guid>
		<description><![CDATA[<p>More information cross-posted on InsideLync.com: Microsoft Lync 2010 for the iPhone and iPad Released.</p>
]]></description>
			<content:encoded><![CDATA[<p>More information cross-posted on InsideLync.com: <a href="http://blog.insidelync.com/2011/12/microsoft-lync-2010-for-the-iphone-and-ipad-released/">Microsoft Lync 2010 for the iPhone and iPad Released</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=RWWusAjJQXc:zpszFnZJZmA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=RWWusAjJQXc:zpszFnZJZmA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=RWWusAjJQXc:zpszFnZJZmA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=RWWusAjJQXc:zpszFnZJZmA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=RWWusAjJQXc:zpszFnZJZmA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=RWWusAjJQXc:zpszFnZJZmA:V_sGLiPBpWU" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/12/20/microsoft-lync-2010-for-the-iphone-and-ipad-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2011/12/20/microsoft-lync-2010-for-the-iphone-and-ipad-released/</feedburner:origLink></item>
		<item>
		<title>Lync 2010 Mobility Service and Documentation Available</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/jbJMc_9rHIs/</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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=jbJMc_9rHIs:NHTLd00oB_M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=jbJMc_9rHIs:NHTLd00oB_M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=jbJMc_9rHIs:NHTLd00oB_M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=jbJMc_9rHIs:NHTLd00oB_M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=jbJMc_9rHIs:NHTLd00oB_M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=jbJMc_9rHIs:NHTLd00oB_M:V_sGLiPBpWU" border="0"></img></a>
</div>]]></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>
		<feedburner:origLink>http://blog.insideocs.com/2011/12/09/lync-2010-mobility-service-and-documentation-available/</feedburner:origLink></item>
		<item>
		<title>Quick Tip – External Contacts with Lync Coexistence</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/Vtxob3Q5UFI/</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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=Vtxob3Q5UFI:EyLUMzNi0m4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=Vtxob3Q5UFI:EyLUMzNi0m4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=Vtxob3Q5UFI:EyLUMzNi0m4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=Vtxob3Q5UFI:EyLUMzNi0m4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=Vtxob3Q5UFI:EyLUMzNi0m4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=Vtxob3Q5UFI:EyLUMzNi0m4:V_sGLiPBpWU" border="0"></img></a>
</div>]]></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>
		<feedburner:origLink>http://blog.insideocs.com/2011/12/06/quick-tip-external-contacts-with-lync-coexistence/</feedburner:origLink></item>
		<item>
		<title>The Remote UC Troubleshooting Tool (RUCT)</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/UYYBm2BWhz8/</link>
		<comments>http://blog.insideocs.com/2011/11/14/the-remote-uc-troubleshooting-tool-ruct/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:37:08 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Client]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[OCS Blog]]></category>
		<category><![CDATA[OCS R2]]></category>
		<category><![CDATA[microsoft lync ocs certificate error]]></category>
		<category><![CDATA[microsoft lync ocs certificate issue]]></category>
		<category><![CDATA[microsoft lync ocs client event log debugging]]></category>
		<category><![CDATA[microsoft lync ocs dns entries]]></category>
		<category><![CDATA[microsoft lync online dns records]]></category>
		<category><![CDATA[microsoft lync server and ocs troubleshooting]]></category>
		<category><![CDATA[Remote UC Troubleshooting Tool (RUCT)]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/2011/11/14/the-remote-uc-troubleshooting-tool-ruct/</guid>
		<description><![CDATA[<p>I haven&#8217;t done a blog entry for awhile on InsideOCS because I have spent a lot of my extra time developing a small free tool called: The Remote UC Troubleshooting Tool (RUCT).</p>
<p>The tool was born out of my former MOCLogin troubleshooting tool, but I decided to rename it because of the expanded features and all [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t done a blog entry for awhile on InsideOCS because I have spent a lot of my extra time developing a small free tool called: <strong><a href="http://www.insideocs.com/Tools/RUCT/RUCT.htm">The Remote UC Troubleshooting Tool (RUCT)</a></strong>.</p>
<p>The tool was born out of my former <a href="http://www.insideocs.com/Tools/MOCLogin.htm">MOCLogin troubleshooting tool</a>, but I decided to rename it because of the expanded features and all the great things it can do besides just troubleshoot DNS entries with Communicator and Lync client automatic sign-in.</p>
<p>I’ll go on record as saying that I think this is one of the best tools available for troubleshooting Lync and Communicator certificate issues!</p>
<p>A <a href="http://www.insideocs.com/Tools/RUCT/RUCT.htm">full description of RUCT is available here</a>, and the tool can be <a href="http://insideocs.com/Tools/RUCT/RUCT.zip">downloaded here</a>.</p>
<p>Here is a summary of what the tool can do:</p>
<p>1.    <strong>Easily Query Important DNS Records used by Microsoft Lync Server and OCS</strong>.</p>
<p>DNS queries for the following Lync and OCS records are issued with one-click:</p>
<ul>
<li>All Lync and Communicator internal and external records used for automatic sign-in.</li>
<li>Lync sign-in records used for Lync Online (in Office 365).</li>
<li>Lync simple URL records used for Dial-In, Meetings, and Administration.</li>
<li>Home registrar location records used by Lync devices.</li>
<li>The automatic partner discovery record used in an Open Federation configuration.</li>
</ul>
<p>2.    <strong>Test Network Availability.</strong></p>
<ul>
<li>Easily test the network connectivity to the hostname and port belonging to any matching DNS SRV record, or IP address belonging to an A record.</li>
<li>A TCP connection is attempted for hostnames and ports, and a ping is attempted for IP addresses.</li>
</ul>
<p>3.    <strong>Certificate Retrieval, Installation, and Export.</strong></p>
<ul>
<li>The tool can remotely retrieve X509 Certificate information on any Lync or OCS port that is secured using TLS (or SSL).  Certificate information returned includes the Common Name (CN), Subject Name, Issuer, Certificate Authority, Expiry Date, Creation Date, and Subject Alternative Names (SANs), and the complete certificate chain.</li>
<li>The remote certificate can also be <strong>installed locally</strong> or exported to a file. This makes client access to labs and self-signed certificates much easier to setup.</li>
</ul>
<p>4.    <strong>Easily Retrieve Important Client-Side Troubleshooting Information</strong>.</p>
<ul>
<li>Important client-side environment settings such as O/S version, 32-bit or 64-bit, current domain credentials, and Lync/Communicator sign-on settings are automatically retrieved and consolidated in one place.</li>
<li>Recent Lync and Communicator specific event log errors and warnings can be retrieved with one-click.</li>
</ul>
<h3>Screenshots</h3>
<p><strong>DNS Information</strong></p>
<p><img class="alignnone" src="http://www.insideocs.com/Tools/RUCT/Images for Blog Post/DNS Information.png" alt="" width="634" height="480" /></p>
<p><strong>Certificate Functionality</strong></p>
<p><img class="alignnone" src="http://www.insideocs.com/Tools/RUCT/Images for Blog Post/Certificate Information Example.png" alt="" width="633" height="480" /></p>
<p><strong>Client Troubleshooting</strong></p>
<p><strong><img class="alignnone" src="http://www.insideocs.com/Tools/RUCT/Images for Blog Post/Client Troubleshooting.png" alt="" width="634" height="482" /></strong></p>
<p>I hope this tool is a big help to people troubleshooting Lync Server and OCS issues.  Feel free to provide any feedback.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=UYYBm2BWhz8:2_SCoZoLkmE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=UYYBm2BWhz8:2_SCoZoLkmE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=UYYBm2BWhz8:2_SCoZoLkmE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=UYYBm2BWhz8:2_SCoZoLkmE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=UYYBm2BWhz8:2_SCoZoLkmE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=UYYBm2BWhz8:2_SCoZoLkmE:V_sGLiPBpWU" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/11/14/the-remote-uc-troubleshooting-tool-ruct/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2011/11/14/the-remote-uc-troubleshooting-tool-ruct/</feedburner:origLink></item>
		<item>
		<title>File Transfers in Microsoft Lync Online</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/ygLgUls1sU4/</link>
		<comments>http://blog.insideocs.com/2011/10/25/file-transfers-in-microsoft-lync-online/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 15:02:41 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Client]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[Microsoft Lync File Transfers Error]]></category>
		<category><![CDATA[Microsoft Lync Online File Transfers]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1291</guid>
		<description><![CDATA[<p>A new post on InsideLync.com about file transfer support in Microsoft Lync Online: http://blog.insidelync.com/2011/10/file-transfers-in-microsoft-lync-online.</p>
]]></description>
			<content:encoded><![CDATA[<p>A new post on <a href="http://www.InsideLync.com">InsideLync.com</a> about file transfer support in Microsoft Lync Online: <a href="http://blog.insidelync.com/2011/10/file-transfers-in-microsoft-lync-online">http://blog.insidelync.com/2011/10/file-transfers-in-microsoft-lync-online</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=ygLgUls1sU4:xH4LQzfuqKg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=ygLgUls1sU4:xH4LQzfuqKg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=ygLgUls1sU4:xH4LQzfuqKg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=ygLgUls1sU4:xH4LQzfuqKg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=ygLgUls1sU4:xH4LQzfuqKg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=ygLgUls1sU4:xH4LQzfuqKg:V_sGLiPBpWU" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/10/25/file-transfers-in-microsoft-lync-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2011/10/25/file-transfers-in-microsoft-lync-online/</feedburner:origLink></item>
		<item>
		<title>Microsoft Lync Remote PowerShell Administration</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/8sq60DP-YSM/</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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=8sq60DP-YSM:ELwtu66LSg0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=8sq60DP-YSM:ELwtu66LSg0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=8sq60DP-YSM:ELwtu66LSg0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=8sq60DP-YSM:ELwtu66LSg0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=8sq60DP-YSM:ELwtu66LSg0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=8sq60DP-YSM:ELwtu66LSg0:V_sGLiPBpWU" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/08/18/microsoft-lync-remote-powershell-administration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2011/08/18/microsoft-lync-remote-powershell-administration/</feedburner:origLink></item>
		<item>
		<title>Microsoft Shares Video Tour of its Cloud Datacenters</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/7hE71l8FbhM/</link>
		<comments>http://blog.insideocs.com/2011/07/27/microsoft-shares-video-tour-of-its-cloud-datacenters/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 14:27:25 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[Microsoft Lync Cloud Infrastructure]]></category>
		<category><![CDATA[Microsoft Lync Data Center]]></category>
		<category><![CDATA[Microsoft Office 365 Cloud Datacenter]]></category>
		<category><![CDATA[Microsoft Office 365 Infrastructure]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1276</guid>
		<description><![CDATA[<p>In case you missed it, a glimpse into Microsoft’s cloud infrastructure used to power Lync, Exchange, and SharePoint in Office 365.</p>
<p>http://blog.insidelync.com/2011/07/microsoft-shares-video-tour-of-its-cloud-datacenters/</p>
]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, a glimpse into Microsoft’s cloud infrastructure used to power Lync, Exchange, and SharePoint in Office 365.</p>
<p><a href="http://blog.insidelync.com/2011/07/microsoft-shares-video-tour-of-its-cloud-datacenters/">http://blog.insidelync.com/2011/07/microsoft-shares-video-tour-of-its-cloud-datacenters/</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=7hE71l8FbhM:_8fDu0a2IWU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=7hE71l8FbhM:_8fDu0a2IWU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=7hE71l8FbhM:_8fDu0a2IWU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=7hE71l8FbhM:_8fDu0a2IWU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=7hE71l8FbhM:_8fDu0a2IWU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=7hE71l8FbhM:_8fDu0a2IWU:V_sGLiPBpWU" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/07/27/microsoft-shares-video-tour-of-its-cloud-datacenters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2011/07/27/microsoft-shares-video-tour-of-its-cloud-datacenters/</feedburner:origLink></item>
		<item>
		<title>Communicator &amp; Lync Sign-In Troubleshooting Tool (Version 3)</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/YnswUnwrIHc/</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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=YnswUnwrIHc:vZLA5lu_nQ8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=YnswUnwrIHc:vZLA5lu_nQ8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=YnswUnwrIHc:vZLA5lu_nQ8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=YnswUnwrIHc:vZLA5lu_nQ8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=YnswUnwrIHc:vZLA5lu_nQ8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=YnswUnwrIHc:vZLA5lu_nQ8:V_sGLiPBpWU" border="0"></img></a>
</div>]]></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>
		<feedburner:origLink>http://blog.insideocs.com/2011/07/19/communicator-lync-lync-sign-in-troubleshooting-tool-version-3/</feedburner:origLink></item>
	</channel>
</rss>

