<?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; OCS 2010</title>
	<atom:link href="http://blog.insideocs.com/category/ocs-2010/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>The Remote UC Troubleshooting Tool (RUCT)</title>
		<link>http://blog.insideocs.com/2011/11/14/the-remote-uc-troubleshooting-tool-ruct/</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>
]]></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>
		</item>
		<item>
		<title>File Transfers in Microsoft Lync Online</title>
		<link>http://blog.insideocs.com/2011/10/25/file-transfers-in-microsoft-lync-online/</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>
]]></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>
		</item>
		<item>
		<title>Microsoft Shares Video Tour of its Cloud Datacenters</title>
		<link>http://blog.insideocs.com/2011/07/27/microsoft-shares-video-tour-of-its-cloud-datacenters/</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>
]]></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>
		</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>Microsoft to Acquire Skype</title>
		<link>http://blog.insideocs.com/2011/05/10/microsoft-to-acquire-skype/</link>
		<comments>http://blog.insideocs.com/2011/05/10/microsoft-to-acquire-skype/#comments</comments>
		<pubDate>Tue, 10 May 2011 14:30:11 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[OCS R2]]></category>
		<category><![CDATA[Microsoft Skype]]></category>
		<category><![CDATA[Microsoft Skype OCS Lync Outlook Xbox Kinect]]></category>
		<category><![CDATA[Microsoft to Acquire Skype]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1217</guid>
		<description><![CDATA[<p>June 30, 2011 Update: Office 365 To Get Skype Integration. It appears Microsoft will integrate Skype functionality into Office 365 voice and video conferencing: http://www.informationweek.com/news/windows/microsoft_news/231000726.</p>
<p>June 17, 2011 Update: Microsoft Wins Antitrust Approval From FTC To Buy Skype: http://online.wsj.com/article/BT-CO-20110617-713214.html.</p>
<p>This is not Microsoft OCS/Lync news per se, but in case you missed it, this morning Microsoft has entered into an agreement [...]]]></description>
			<content:encoded><![CDATA[<p><strong>June 30, 2011 Update</strong>: Office 365 To Get Skype Integration. It appears Microsoft will integrate Skype functionality into Office 365 voice and video conferencing: <a href="http://www.informationweek.com/news/windows/microsoft_news/231000726">http://www.informationweek.com/news/windows/microsoft_news/231000726</a>.</p>
<p><strong>June 17, 2011 Update</strong>: Microsoft Wins Antitrust Approval From FTC To Buy Skype: <a href="http://online.wsj.com/article/BT-CO-20110617-713214.html">http://online.wsj.com/article/BT-CO-20110617-713214.html</a>.</p>
<p>This is not Microsoft OCS/Lync news per se, but in case you missed it, this morning Microsoft has entered into an agreement to acquire Skype: <a href="http://www.microsoft.com/Presspass/press/2011/may11/05-10CorpNewsPR.mspx">http://www.microsoft.com/Presspass/press/2011/may11/05-10CorpNewsPR.mspx</a>.</p>
<p>This is exciting news &#8211; the acquisition in itself significantly extends Microsoft&#8217;s Unified Communication&#8217;s reach to many more millions of people world-wide, and the potential of integration with Microsoft Lync, the Office platform, and other Microsoft devices is powerful.</p>
<p>From the press release: &#8220;Skype will support Microsoft devices like Xbox and Kinect, Windows Phone and a wide array of Windows devices, and Microsoft will connect Skype users with Lync, Outlook, Xbox Live and other communities. Microsoft will continue to invest in and support Skype clients on non-Microsoft platforms&#8221;.</p>
<p>The thought of potentially having Skype users in my Lync client and vice-versa is appealing!</p>
<p><strong><br />
</strong></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Skype will support Microsoft devices like Xbox and Kinect, Windows Phone and a wide array of Windows devices, and Microsoft will connect Skype users with Lync, Outlook, Xbox Live and other communities. Microsoft will continue to invest in and support Skype clients on non-Microsoft platforms.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/05/10/microsoft-to-acquire-skype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Lync Server Databases</title>
		<link>http://blog.insideocs.com/2011/04/18/the-lync-server-databases/</link>
		<comments>http://blog.insideocs.com/2011/04/18/the-lync-server-databases/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 15:23:57 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[OCS 2010]]></category>
		<category><![CDATA[Microsoft Lync Databases]]></category>
		<category><![CDATA[Microsoft Lync RTC RTCLOCAL xds]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1205</guid>
		<description><![CDATA[<p>I new post I just finished which covers the types and uses of databases in Lync server:</p>
<p>&#62; http://blog.insidelync.com/2011/04/the-lync-server-databases/</p>
]]></description>
			<content:encoded><![CDATA[<p>I new post I just finished which covers the types and uses of databases in Lync server:</p>
<p>&gt; <a href="http://blog.insidelync.com/2011/04/the-lync-server-databases/">http://blog.insidelync.com/2011/04/the-lync-server-databases/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/04/18/the-lync-server-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

