<?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>Fri, 11 May 2012 18:49:21 +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>Saving OCS User Settings Before a Lync Migration</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/j7H0bs9VaBU/</link>
		<comments>http://blog.insideocs.com/2012/04/19/saving-ocs-user-settings-before-a-lync-migration/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 21:11:41 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[OCS R2]]></category>
		<category><![CDATA[Microsoft Lync Migration]]></category>
		<category><![CDATA[microsoft lync OCS user migration]]></category>
		<category><![CDATA[Microsoft OCS Lync Migration]]></category>
		<category><![CDATA[Microsoft OCS Migration Users]]></category>
		<category><![CDATA[microsoft ocs user migration settings]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/2012/04/19/saving-ocs-user-settings-before-a-lync-migration/</guid>
		<description><![CDATA[<p>During an OCS to Lync migration, existing OCS user settings, including user policies, are transitioned to Lync when the OCS pool is merged into the Lync deployment and OCS users are migrated from their home OCS pool to the Lync pool.</p>
<p>In many cases it is helpful to ensure that this transition was done properly and [...]]]></description>
			<content:encoded><![CDATA[<p>During an OCS to Lync migration, existing OCS user settings, including user policies, are transitioned to Lync when the OCS pool is merged into the Lync deployment and OCS users are migrated from their home OCS pool to the Lync pool.</p>
<p>In many cases it is helpful to ensure that this transition was done properly and users have equivalent Lync functionality to what they had in OCS after the migration. But how do you verify this once the users have already been migrated over?</p>
<p><strong>Answer</strong>: do a quick backup of your OCS user settings before you migrate your users. This gives you the ability to make sure that a user who was enabled for Public Instant Messaging for example (aka PIC) is also enabled for PIC after the user account has been migrated to Lync.</p>
<p>Below is small VBScript that <strong>you can customize</strong> to backup the existing OCS user settings. The script enumerates through all OCS enabled users and makes use of the OCS WMI MSFT_SIPESUserSetting class to access their current OCS settings, and outputs it to a file called called <strong>OCSUsers.txt</strong>:</p>
<blockquote><p>Set objFSO = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)<br />
Set objFile = objFSO.CreateTextFile(&#8221;OCSusers.txt&#8221;, True)</p>
<p>objFile.WriteLine &#8220;Starting&#8230;&#8221;</p>
<p>strComputer = &#8220;.&#8221;</p>
<p>Set objWMIService = GetObject(&#8221;winmgmts:&#8221; _<br />
&amp; &#8220;{impersonationLevel=impersonate}!\\&#8221; _<br />
&amp; strComputer &amp; &#8220;\root\cimv2&#8243;)</p>
<p>Set colSoftware = objWMIService.ExecQuery(&#8221;select * from MSFT_SIPESUserSetting&#8221;)</p>
<p>For Each objItem in colSoftware<br />
objFile.WriteLine &#8220;OCS User Name: &#8221; &amp; objItem.DisplayName<br />
objFile.WriteLine &#8220;PrimaryURI: &#8221; &amp; objItem.primaryURI<br />
objFile.WriteLine &#8220;Enabled for Enhanced Presence: &#8220;  &amp; objItem.EnabledForEnhancedPresence<br />
objFile.WriteLine &#8220;Remote Access: &#8220;  &amp; objItem.EnabledForInternetAccess<br />
objFile.WriteLine &#8220;Federation: &#8220;  &amp; objItem.EnabledForFederation<br />
objFile.WriteLine &#8220;Public IM: &#8220;  &amp; objItem.PublicNetworkEnabled</p>
<p>objFile.WriteLine &#8220;Location Profile: &#8220;  &amp; objItem.LocationProfile<br />
objFile.WriteLine &#8220;Meeting Policy: &#8220;  &amp; objItem.MeetingPolicy</p>
<p>objFile.WriteLine &#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221;<br />
Next</p></blockquote>
<p>Customize the script to include whatever OCS user settings are important in your environment by adding a objFile.WriteLine line with an OCS user property from the WMI MSFT_SIPESUserSetting class. All the user properties are available here: <a title="http://msdn.microsoft.com/en-us/library/dd167418(v=office.13).aspx" href="http://msdn.microsoft.com/en-us/library/dd167418(v=office.13).aspx">http://msdn.microsoft.com/en-us/library/dd167418(v=office.13).aspx</a>.</p>
<p>Save the above script to a *.vbs file (e.g. OCSUsers.vbs).  To execute it, just type the script name on a command line in a regular cmd window.</p>
<p><strong>Note</strong>: if the OCS user policy value is blank for a user, the setting is to use the default Global policy setting.</p>
<p>While a script like this is good for a one-time verification, if you have larger user inventory and usage reporting needs, there are 3rd-party products such as <a href="http://www.quest.com/messagestats/">Quest MessageStats</a> which provide these types of reports for both OCS and Lync.</p>
<p>For more information on OCS to Lync migrations, see:</p>
<ol>
<li><strong>Migration from Office Communications Server 2007 R2 to Lync Server 2010</strong>: <a title="http://technet.microsoft.com/en-us/library/gg413057.aspx" href="http://technet.microsoft.com/en-us/library/gg413057.aspx">http://technet.microsoft.com/en-us/library/gg413057.aspx</a></li>
<li><strong>Lync &amp; OCS Migration Top 10</strong>: <a title="http://blog.insideocs.com/2011/01/11/lync-ocs-migration-top-10/" href="http://blog.insideocs.com/2011/01/11/lync-ocs-migration-top-10/">http://blog.insideocs.com/2011/01/11/lync-ocs-migration-top-10/</a></li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=j7H0bs9VaBU:9yw179AaV7s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=j7H0bs9VaBU:9yw179AaV7s:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=j7H0bs9VaBU:9yw179AaV7s:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=j7H0bs9VaBU:9yw179AaV7s:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=j7H0bs9VaBU:9yw179AaV7s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=j7H0bs9VaBU:9yw179AaV7s:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/j7H0bs9VaBU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2012/04/19/saving-ocs-user-settings-before-a-lync-migration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2012/04/19/saving-ocs-user-settings-before-a-lync-migration/</feedburner:origLink></item>
		<item>
		<title>April 2012 OCS 2007 R2 Updates Available</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/s1VJfHmJaUo/</link>
		<comments>http://blog.insideocs.com/2012/04/17/april-2012-ocs-2007-r2-updates-available/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 17:00:15 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Microsoft OCS 2007 R2 updates]]></category>
		<category><![CDATA[Microsoft OCS 2007 Updates Mobile]]></category>
		<category><![CDATA[Microsoft OCS Mobile Issues]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1351</guid>
		<description><![CDATA[<p>In case you missed it, yesterday new updates were released for Microsoft OCS 2007 R2.</p>
<p>The NextHop write-up does a good job detailing all the issues that are addressed: Office Communications Server 2007 R2 Updates Now Available: April 2012.</p>
<p>The two noteworthy updates from my perspective are:</p>

Microsoft push notification messages are not delivered to Lync mobile clients

This [...]]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, yesterday new updates were released for Microsoft OCS 2007 R2.</p>
<p>The NextHop write-up does a good job detailing all the issues that are addressed: <a href="http://blogs.technet.com/b/nexthop/archive/2012/04/16/office-communications-server-2007-r2-updates-now-available-april-2012.aspx">Office Communications Server 2007 R2 Updates Now Available: April 2012</a>.</p>
<p>The two noteworthy updates from my perspective are:</p>
<ol>
<li><a href="http://support.microsoft.com/kb/2664650">Microsoft push notification messages are not delivered to Lync mobile clients</a>
<ul>
<li>This applies to Lync deployments if you are using a Lync pool with an OCS 2007 R2 edge.</li>
</ul>
</li>
<li><a href="http://support.microsoft.com/kb/2686821">OWA does not work correctly in an Office Communications Server 2007 R2 environment that has OWA integration configured</a>
<ul>
<li>There has been reported issues in the field with the OWA integration in an OCS 2007 R2 environment, and this should address them.</li>
</ul>
</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=s1VJfHmJaUo:Ksy5d6GwDIo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=s1VJfHmJaUo:Ksy5d6GwDIo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=s1VJfHmJaUo:Ksy5d6GwDIo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=s1VJfHmJaUo:Ksy5d6GwDIo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=s1VJfHmJaUo:Ksy5d6GwDIo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=s1VJfHmJaUo:Ksy5d6GwDIo:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/s1VJfHmJaUo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2012/04/17/april-2012-ocs-2007-r2-updates-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2012/04/17/april-2012-ocs-2007-r2-updates-available/</feedburner:origLink></item>
		<item>
		<title>Tips for Managing Lync User Policies</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/aPi3nqjXjlg/</link>
		<comments>http://blog.insideocs.com/2012/04/10/tips-for-managing-lync-user-policies/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 15:34:48 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[microsoft lync]]></category>
		<category><![CDATA[MICROSOFT LYNC CONFERENCING EXTERNAL ACCESS CLIENT POLICIES]]></category>
		<category><![CDATA[MICROSOFT LYNC DELETING USER POLICIES]]></category>
		<category><![CDATA[MICROSOFT LYNC MANAGING USER POLICIES]]></category>
		<category><![CDATA[MICROSOFT LYNC USER POLICIES]]></category>
		<category><![CDATA[MICROSOFT LYNC USER POLICY CANNOT BIND PARAMETER FILTER TO THE TARGET]]></category>
		<category><![CDATA[MICROSOFT LYNC USER POLICY COMPARISON OPERATORS]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1345</guid>
		<description><![CDATA[<p>New post on InsideLync.com: Tips for Managing Lync User Policies (http://blog.insidelync.com/2012/04/tips-for-managing-lync-user-policies/)</p>
]]></description>
			<content:encoded><![CDATA[<p>New post on InsideLync.com: Tips for Managing Lync User Policies (<a href="http://blog.insidelync.com/2012/04/tips-for-managing-lync-user-policies/">http://blog.insidelync.com/2012/04/tips-for-managing-lync-user-policies/</a>)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=aPi3nqjXjlg:ngW5kh6AwBM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=aPi3nqjXjlg:ngW5kh6AwBM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=aPi3nqjXjlg:ngW5kh6AwBM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=aPi3nqjXjlg:ngW5kh6AwBM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=aPi3nqjXjlg:ngW5kh6AwBM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=aPi3nqjXjlg:ngW5kh6AwBM:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/aPi3nqjXjlg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2012/04/10/tips-for-managing-lync-user-policies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2012/04/10/tips-for-managing-lync-user-policies/</feedburner:origLink></item>
		<item>
		<title>Lync Mobile DNS Records Added to RUCT</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/B0N8Mm_CE9s/</link>
		<comments>http://blog.insideocs.com/2012/03/14/lync-mobile-dns-records-added-to-ruct/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 17:41:56 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[microsoft lync 2010 lyncdiscover lyncdiscoverinternal]]></category>
		<category><![CDATA[microsoft lync 2010 mobile]]></category>
		<category><![CDATA[microsoft lync 2010 mobility dns records]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1338</guid>
		<description><![CDATA[<p>A quick post to let followers of my Remote UC Troubleshooting  Tool (RUCT) for Lync and OCS know that the DNS records used by the Lync  mobility clients to auto-discover the Lync mobility service have been added.</p>
<p>Specifically you now have the option of querying the locally configured DNS  server for the following [...]]]></description>
			<content:encoded><![CDATA[<p>A quick post to let followers of my <a href="http://www.insideocs.com/Tools/RUCT/RUCT.htm">Remote UC Troubleshooting  Tool (RUCT)</a> for Lync and OCS know that the DNS records used by the Lync  mobility clients to auto-discover the Lync mobility service have been added.</p>
<p>Specifically you now have the option of querying the locally configured DNS  server for the following records:</p>
<ul>
<li>Lyncdiscover.&lt;domain.com&gt;   (both CNAME or A record)</li>
<li>Lyncdiscoverinternal.&lt;domain.com&gt;  (both CNAME or A record)</li>
</ul>
<p>From the same screen you can ping the resulting hostname or test the port  availability on any of the Lync DNS record matches.</p>
<p>Here is a sample screen shot with the Lync Auto-Discovery Mobility DNS  record:</p>
<p><img class="alignnone size-full wp-image-1339" title="RUCT - Mobility Records Added" src="http://blog.insideocs.com/wp-content/uploads/2012/03/RUCT-Mobility-Records-Added.png" alt="RUCT - Mobility Records Added" width="750" height="568" /></p>
<p>See <a href="http://blog.insideocs.com/2011/11/14/the-remote-uc-troubleshooting-tool-ruct/">http://blog.insideocs.com/2011/11/14/the-remote-uc-troubleshooting-tool-ruct/</a> for more information on this free Windows tool.</p>
<p>More information about the Lync Mobility DNS records can be found here:</p>
<ul>
<li><a href="http://blog.kloud.com.au/2011/12/12/lync-2010-mobility-do-i-need-lyncdiscoverinternal/">Lync  2010 Mobility – Do I need lyncdiscoverinternal?</a></li>
<li><a href="http://social.technet.microsoft.com/Forums/da-DK/ocsmobility/thread/2888aea1-b406-4914-ae0e-fcf516911c6e">Lync  Mobility, lyncdiscoverinternal or lyncd</a>iscover</li>
<li><a href="http://technet.microsoft.com/en-us/library/hh690030.aspx">Microsoft  TechNet &#8211; Technical Requirements for Mobility</a></li>
<li><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></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=B0N8Mm_CE9s:Yry1DxC7a-U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=B0N8Mm_CE9s:Yry1DxC7a-U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=B0N8Mm_CE9s:Yry1DxC7a-U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=B0N8Mm_CE9s:Yry1DxC7a-U:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=B0N8Mm_CE9s:Yry1DxC7a-U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=B0N8Mm_CE9s:Yry1DxC7a-U:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/B0N8Mm_CE9s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2012/03/14/lync-mobile-dns-records-added-to-ruct/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2012/03/14/lync-mobile-dns-records-added-to-ruct/</feedburner:origLink></item>
		<item>
		<title>Top 10 Facts for Planning a Lync 2010 Client Deployment</title>
		<link>http://feedproxy.google.com/~r/InsideOCS/~3/95H7PBCK-ZI/</link>
		<comments>http://blog.insideocs.com/2012/03/01/top-10-facts-for-planning-a-lync-2010-client-deployment/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 18:17:10 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Client]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Lync 2010]]></category>
		<category><![CDATA[microsoft lync 32-bit 64-bit]]></category>
		<category><![CDATA[Microsoft Lync client deployment]]></category>
		<category><![CDATA[microsoft lync client installation]]></category>
		<category><![CDATA[microsoft lync client upgrade]]></category>
		<category><![CDATA[microsoft lync office 2010]]></category>
		<category><![CDATA[microsoft lync outlook integration]]></category>
		<category><![CDATA[microsoft lync outlook online add-on]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1333</guid>
		<description><![CDATA[<p>New post on InsideLync.com: Top 10 Facts for Planning a Lync 2010 Client Deployment.</p>
]]></description>
			<content:encoded><![CDATA[<p>New post on InsideLync.com: <a href="http://blog.insidelync.com/2012/02/top-10-faq-for-planning-a-lync-2010-client-deployment/">Top 10 Facts for Planning a Lync 2010 Client Deployment</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/InsideOCS?a=95H7PBCK-ZI:_0ZW0Cy8s8M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=95H7PBCK-ZI:_0ZW0Cy8s8M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=95H7PBCK-ZI:_0ZW0Cy8s8M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=95H7PBCK-ZI:_0ZW0Cy8s8M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/InsideOCS?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/InsideOCS?a=95H7PBCK-ZI:_0ZW0Cy8s8M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/InsideOCS?i=95H7PBCK-ZI:_0ZW0Cy8s8M:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/95H7PBCK-ZI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2012/03/01/top-10-facts-for-planning-a-lync-2010-client-deployment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2012/03/01/top-10-facts-for-planning-a-lync-2010-client-deployment/</feedburner:origLink></item>
		<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><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/MiWngVFvhQc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2012/01/24/migrating-your-ocs-federated-partner-settings-to-lync/feed/</wfw:commentRss>
		<slash:comments>1</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><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/7ApumYJ3Rcc" height="1" width="1"/>]]></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><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/RWWusAjJQXc" height="1" width="1"/>]]></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><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/jbJMc_9rHIs" height="1" width="1"/>]]></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><img src="http://feeds.feedburner.com/~r/InsideOCS/~4/Vtxob3Q5UFI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/12/06/quick-tip-external-contacts-with-lync-coexistence/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://blog.insideocs.com/2011/12/06/quick-tip-external-contacts-with-lync-coexistence/</feedburner:origLink></item>
	</channel>
</rss>

