<?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; Management</title>
	<atom:link href="http://blog.insideocs.com/category/management/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>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>Microsoft Lync Remote PowerShell Administration</title>
		<link>http://blog.insideocs.com/2011/08/18/microsoft-lync-remote-powershell-administration/</link>
		<comments>http://blog.insideocs.com/2011/08/18/microsoft-lync-remote-powershell-administration/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 16:12:58 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Microsoft Lync 2010 Powershell Administration]]></category>
		<category><![CDATA[Microsoft Lync 2010 Remote Powershell]]></category>
		<category><![CDATA[Microsoft Lync Administration 32-bit]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1284</guid>
		<description><![CDATA[<p>A new post on InsideLync.com &#8211; Microsoft Lync Remote PowerShell Administration (http://blog.insidelync.com/2011/08/remote-lync-powershell-administration/).</p>
]]></description>
			<content:encoded><![CDATA[<p>A new post on InsideLync.com &#8211; Microsoft Lync Remote PowerShell Administration (<a href="http://blog.insidelync.com/2011/08/remote-lync-powershell-administration/">http://blog.insidelync.com/2011/08/remote-lync-powershell-administration/</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/08/18/microsoft-lync-remote-powershell-administration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New RoundTable Firmware Upgrade</title>
		<link>http://blog.insideocs.com/2011/06/21/new-roundtable-firmware-upgrade/</link>
		<comments>http://blog.insideocs.com/2011/06/21/new-roundtable-firmware-upgrade/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 17:20:20 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Microsoft RoundTable]]></category>
		<category><![CDATA[Microsoft RoundTable Firmware]]></category>
		<category><![CDATA[Microsoft RoundTable upgrade]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1239</guid>
		<description><![CDATA[<p>A new firmware update for the Microsoft RoundTable was released on June 15, 2011.</p>
<p>You can download it here: http://www.microsoft.com/download/en/details.aspx?id=17500.  It is just over 18 Mb.</p>
<p>The list of issues it addresses can be found in KB article 2559123: http://support.microsoft.com/kb/2559123.</p>
]]></description>
			<content:encoded><![CDATA[<p>A new firmware update for the Microsoft RoundTable was released on June 15, 2011.</p>
<p>You can download it here: <a href="http://www.microsoft.com/download/en/details.aspx?id=17500">http://www.microsoft.com/download/en/details.aspx?id=17500</a>.  It is just over 18 Mb.</p>
<p>The list of issues it addresses can be found in KB article 2559123: <a href="http://support.microsoft.com/kb/2559123">http://support.microsoft.com/kb/2559123</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/06/21/new-roundtable-firmware-upgrade/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>April 2011 Cumulative Update for Lync 2010</title>
		<link>http://blog.insideocs.com/2011/04/05/april-2011-cumulative-update-for-lync-2010/</link>
		<comments>http://blog.insideocs.com/2011/04/05/april-2011-cumulative-update-for-lync-2010/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 04:07:34 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Lync]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Microsoft Lync 2010 hotfix]]></category>
		<category><![CDATA[Microsoft Lync 2010 Updates]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1187</guid>
		<description><![CDATA[<p>The April 2011 cumulative Lync 2010 Updates are available.</p>
<p>Read more at: http://blog.insidelync.com/2011/04/april-2011-cumulative-update-for-lync-2010/.</p>
]]></description>
			<content:encoded><![CDATA[<p>The April 2011 cumulative Lync 2010 Updates are available.</p>
<p>Read more at: <a href="http://blog.insidelync.com/2011/04/april-2011-cumulative-update-for-lync-2010/">http://blog.insidelync.com/2011/04/april-2011-cumulative-update-for-lync-2010/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/04/05/april-2011-cumulative-update-for-lync-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New OCS 2007 R2 Updates &amp; Microsoft Federated Edge Server IP Address Change</title>
		<link>http://blog.insideocs.com/2011/03/11/new-ocs-2007-r2-updates-microsoft-federated-edge-server-ip-address-change/</link>
		<comments>http://blog.insideocs.com/2011/03/11/new-ocs-2007-r2-updates-microsoft-federated-edge-server-ip-address-change/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 19:44:01 +0000</pubDate>
		<dc:creator>Curtis Johnstone</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Communicator]]></category>
		<category><![CDATA[Edge]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[OCS R2]]></category>
		<category><![CDATA[communicator 2007 r2 march 2011 update]]></category>
		<category><![CDATA[microsoft 2007 r2 march 2011 update]]></category>
		<category><![CDATA[microsoft communicator 2007 r2 march 2011 update]]></category>
		<category><![CDATA[microsoft communicator 2007 r2 update]]></category>
		<category><![CDATA[Microsoft federation update]]></category>
		<category><![CDATA[Microsoft ocs 2007 r2 cu8 update]]></category>

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



Office   Communicator 2007 R2
KB Article 2501722
Microsoft   Download Link


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

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1171</guid>
		<description><![CDATA[<p>I just posted my Microsoft Lync PowerShell Cheat Sheet on a new blog dedicated to Microsoft Lync: InsideLync.com.</p>
<p>Your can read about it and download it here: http://blog.insidelync.com/2011/02/microsoft-lync-powershell-cheat-sheet/.</p>
<p>In a nutshell it is a quick reference card for PowerShell use with Lync Server 2010.</p>
]]></description>
			<content:encoded><![CDATA[<p>I just posted my <a href="http://blog.insidelync.com/2011/02/microsoft-lync-powershell-cheat-sheet/">Microsoft Lync PowerShell Cheat Sheet</a> on a new blog dedicated to Microsoft Lync: <a href="http://www.InsideLync.com">InsideLync.com</a>.</p>
<p>Your can read about it and download it here: <a href="http://blog.insidelync.com/2011/02/microsoft-lync-powershell-cheat-sheet/">http://blog.insidelync.com/2011/02/microsoft-lync-powershell-cheat-sheet/</a>.</p>
<p>In a nutshell it is a quick reference card for PowerShell use with Lync Server 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2011/02/15/microsoft-lync-powershell-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lync and OCS Administration Tools</title>
		<link>http://blog.insideocs.com/2010/12/10/lync-and-ocs-administration-tools/</link>
		<comments>http://blog.insideocs.com/2010/12/10/lync-and-ocs-administration-tools/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 05:06:03 +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[Powershell]]></category>
		<category><![CDATA[Microsoft Lync Administration]]></category>
		<category><![CDATA[Microsoft Lync administration tools]]></category>
		<category><![CDATA[Microsoft lync merge topology]]></category>
		<category><![CDATA[Microsoft Lync OCS administration tools]]></category>
		<category><![CDATA[Microsoft lync ocs migration]]></category>

		<guid isPermaLink="false">http://blog.insideocs.com/?p=1140</guid>
		<description><![CDATA[<p>A quick post with 5 key reminders about administering OCS and Lync in a coexistence scenario. As with previous OCS/Lync releases, the general rule is that you must use the administrative tools that ship with the server version that you want to manage.</p>
1. The Lync Server Administration Tools Cannot be Installed Alongside the OCS 2007 [...]]]></description>
			<content:encoded><![CDATA[<p>A quick post with 5 key reminders about administering OCS and Lync in a coexistence scenario. As with previous OCS/Lync releases, the general rule is that you must use the administrative tools that ship with the server version that you want to manage.</p>
<h3><strong>1. The Lync Server Administration Tools Cannot be Installed Alongside the OCS 2007 or OCS 2007 R2 Tools.</strong></h3>
<p>If you try to install the Lync Administrative Tools on a machine that already as the OCS 2007 R2 Administrative Tools, you will see the following error:</p>
<p><img class="alignnone size-full wp-image-1141" title="Lync Admin Tool Install" src="http://blog.insideocs.com/wp-content/uploads/2010/12/Lync-Admin-Tool-Install.png" alt="Lync Admin Tool Install" width="514" height="400" /></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Note: if you want to by-pass the Lync Deployment Wizard GUI to install the Administrative tools directly from the setup files, this worked for me:</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">1.<span style="white-space: pre;"> </span>First install the core components from:  .. \Lync Server 2010 Eval (US)\Setup\amd64\Setup\ocscore.msi</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">2.<span style="white-space: pre;"> </span>Next, install the administrative tools from: ..\Lync Server 2010 Eval (US)\Setup\amd64\Setup\admintools.msi.</div>
<p><span style="text-decoration: underline;">Note</span>: if you want to by-pass the Lync Deployment Wizard GUI to install the Administrative tools directly from the setup files, this worked for me:</p>
<ul>
<li>First install the core components from:  .. \Setup\amd64\Setup\ocscore.msi</li>
<li>Next, install the administrative tools from: ..\Setup\amd64\Setup\admintools.msi.</li>
</ul>
<h3>2. You can View your OCS 2007 R2 Topology in the Lync Topology Builder</h3>
<p>A key step in the the OCS migration process is to merge topology information. This merges data from a previous OCS 2007 or OCS 2007 R2 topology data into the Lync Central Management Store. See Microsoft TechNet Lync Server Migration (<a href="http://technet.microsoft.com/en-us/library/gg425746.aspx">http://technet.microsoft.com/en-us/library/gg425746.aspx</a>) for full migration details. This is a key step to allow side-by-side coexistence and user migration.</p>
<p>The “Merge 2007 or 2007 R2 Topology…” action from the Topology builder (<a href="http://technet.microsoft.com/en-us/library/gg398172.aspx">http://technet.microsoft.com/en-us/library/gg398172.aspx</a>) creates a root tree node named “<strong>BackCompatSite</strong>” which shows up in the Lync Topology Builder where you can view your OCS Topology components.  The OCS information under this node is just read-only; no actions can be taken.</p>
<div><img class="alignnone size-full wp-image-1142" title="Lync OCS Topology" src="http://blog.insideocs.com/wp-content/uploads/2010/12/Lync-OCS-Topology.png" alt="Lync OCS Topology" width="318" height="465" /></div>
<p><strong>Important Notes:</strong></p>
<ul>
<li>Always save a copy of your existing Lync topology first.</li>
<li>Before you merge the topology, you need to install the “WMI Backward Compatibility Package”.  This compatibility package is located in the Lync distribution at:
<ul>
<li>…\Setup\amd64\Setup\<strong>OCSWMIBC.msi</strong></li>
</ul>
</li>
<li>The &#8220;<strong>BackCompatSite</strong>&#8221; OCS tree node is a snapshot of your legacy OCS environment – it does not keep it synchronized! If you makes changes, you will need to remerge.</li>
</ul>
<div>
<h3>3.  The OCS WMI Classes can be Installed on a Lync Server Admin Machine and can be Used with PowerShell</h3>
<div>The WMI Backward Compatibility Package (OCSWMIBC.msi) can be installed on any machine in the domain that has the Lync Server 2010 Core Components and Lync Server Management Shell installed, and has access to the Office Communications Server 2007 R2 topology (WMI provider to Active Directory and SQL Server). OCSWMIBC.msi is typically installed on a Front-End server in the topology.</div>
<div>You can then use PowerShell to query information about your OCS environement, such as:</div>
<div>
<ul>
<li>Get-wmiobject -class msft_sipesusersetting | Select-Object DisplayName, Enabled<span style="white-space:pre"> (</span>to see user information)</li>
<li>Get-WmiObject -class MSFT_SIPLocalNormalizationRuleData”   (to see your OCS normalization rules)</li>
<li>Get-WmiObject -class MSFT_SIPLocationProfileData | Select-Object -Property Name   (to see your OCS location profiles)</li>
<li>Get-WmiObject -class MSFT_SIPTrustedServiceSetting | Select-Object FQDN, Port<span style="white-space:pre"> (</span>to see your OCS servers and services)</li>
</ul>
</div>
<div>Do not use the WMI classes to change anything in your OCS environment – use the respective OCS Administrative Tools for that.</div>
</div>
<div>Again, the WMI Backward Compatibility Package is available on your distribution media at: …\Setup\amd64\Setup\OCSWMIBC.msi.</div>
<div>
<h3>4. There is only a 64-bit Version of the Lync Server Administrative Tools</h3>
<div>There is only a 64-bit version of the Lync Administrative tools currently available. There are a couple of options:</div>
<div>
<ul>
<li>You can use the web-based Lync Server 2010 Control Panel (from any computer running IE 7, IE 8, or Firefox 3+), but having administrative access via PowerShell will allow you to do more powerful custom administration – specifically Topology related administration.</li>
<li>It is possible to launch a remote PowerShell 2.0 remote session on a 32-bit machine to the Lync server, load the Lync Server Management module, and use the Lync PowerShell cmdlets if you are in a pinch. For more information on this see my blog post: <a href="http://blog.insidelync.com/2011/08/remote-lync-powershell-administration/">Microsoft Lync Remote PowerShell Administration</a>.</li>
</ul>
</div>
<h3>5. There is no Active Directory Users and Computers Add-In for Lync Server</h3>
<div>Lync user management should be done through the Lync Control Panel Administration tool.  As usual, the non-Lync user Active Directory attributes can be managed through ADUC.</div>
<div><strong>Tip</strong>: If you are trying to enable an AD user for Lync, and get the error: &#8220;<strong>Insufficient access rights to perform the operation</strong>&#8220;, see the following:</div>
<div>
<ol>
<li><a href="http://blogs.technet.com/b/nexthop/archive/2010/12/27/lync-2010-server-control-panel-returns-that-error-quot-insufficient-access-rights-to-perform-the-operation-quot-when-attempting-a-move-user-or-enable-user-command.aspx">Lync Server 2010 Control Panel returns the error &#8220;Insufficient access rights to perform the operation&#8221; when attempting a move user or enable user command</a></li>
<li><a href="http://support.microsoft.com/kb/2466000#appliesto">Microsoft KB article 2466000</a></li>
</ol>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.insideocs.com/2010/12/10/lync-and-ocs-administration-tools/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

