<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Microsoft UC Client Deployment Script</title>
	<atom:link href="http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/</link>
	<description>Microsoft Office Communications Server - Tips, Tricks, and Insight</description>
	<lastBuildDate>Thu, 26 Jan 2012 18:22:01 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Steve</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-5768</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 15 Mar 2011 14:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-5768</guid>
		<description>I thought I had local copy turned off. It works now. Thanks.</description>
		<content:encoded><![CDATA[<p>I thought I had local copy turned off. It works now. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-5767</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 15 Mar 2011 14:19:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-5767</guid>
		<description>I tried changing INSTALLATION_ROOT to both of your suggestions and both times I get &quot;could not access source&quot; errors.</description>
		<content:encoded><![CDATA[<p>I tried changing INSTALLATION_ROOT to both of your suggestions and both times I get &#8220;could not access source&#8221; errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curtis Johnstone</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-5756</link>
		<dc:creator>Curtis Johnstone</dc:creator>
		<pubDate>Mon, 14 Mar 2011 20:05:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-5756</guid>
		<description>You should be able to do that by just leaving the INSTALLATION_ROOT null (i.e. = &quot;&quot;), or by setting it = &quot;.&quot; (reference the current directory).

I am not sure which one would be best in the SCCM case.  I would try setting it = &quot;.&quot;

Hope that helps,
Curtis</description>
		<content:encoded><![CDATA[<p>You should be able to do that by just leaving the INSTALLATION_ROOT null (i.e. = &#8220;&#8221;), or by setting it = &#8220;.&#8221; (reference the current directory).</p>
<p>I am not sure which one would be best in the SCCM case.  I would try setting it = &#8220;.&#8221;</p>
<p>Hope that helps,<br />
Curtis</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-5755</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 14 Mar 2011 19:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-5755</guid>
		<description>This script is great. I plan on deploying it using SCCM. How can I prevent it from requiring a source path and just run from where the source files are stored? I&#039;d like the files copied from the SCCM DPs and run from the local SCCM cache folder.</description>
		<content:encoded><![CDATA[<p>This script is great. I plan on deploying it using SCCM. How can I prevent it from requiring a source path and just run from where the source files are stored? I&#8217;d like the files copied from the SCCM DPs and run from the local SCCM cache folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curtis Johnstone</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-4403</link>
		<dc:creator>Curtis Johnstone</dc:creator>
		<pubDate>Fri, 19 Nov 2010 16:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-4403</guid>
		<description>Hi Ryan, glad the script was useful for you - it was a lot of work :-)

My understanding is that the MSI would kick-off, detect Communicator is installed, and do nothing if it was the same or newer version. If that is not the case it is an easy fix.

Starting at line 1070, the script checks to see if Communicator is already installed, and what version.  If you want, you can just &#039;do nothing&#039; if a version of Communicator newer than MOC 2005 is installed.  You could add this at line 1092:

    If (communicatorCurrentVersion &gt;= &quot;2.0&quot;) Then
            g_communicatorInstalled = True
           WScript.Sleep 1000
           WriteToLogFile logFileSection &amp; &quot;Office Communicator Installation Finished&quot;
            Exit Sub
    End If

Regards,
Curtis</description>
		<content:encoded><![CDATA[<p>Hi Ryan, glad the script was useful for you &#8211; it was a lot of work <img src='http://blog.insideocs.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>My understanding is that the MSI would kick-off, detect Communicator is installed, and do nothing if it was the same or newer version. If that is not the case it is an easy fix.</p>
<p>Starting at line 1070, the script checks to see if Communicator is already installed, and what version.  If you want, you can just &#8216;do nothing&#8217; if a version of Communicator newer than MOC 2005 is installed.  You could add this at line 1092:</p>
<p>    If (communicatorCurrentVersion &gt;= &#8220;2.0&#8243;) Then<br />
            g_communicatorInstalled = True<br />
           WScript.Sleep 1000<br />
           WriteToLogFile logFileSection &amp; &#8220;Office Communicator Installation Finished&#8221;<br />
            Exit Sub<br />
    End If</p>
<p>Regards,<br />
Curtis</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-4396</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Thu, 18 Nov 2010 22:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-4396</guid>
		<description>Thank you for the script, works almost perfectly!  I have the wsf script set to apply at computer start up and it goes through perfectly.  The only issue is that every time a person restarts, the script runs again and the client is installed again.  Is there a simple switch I can put it to not run the script if Communicator 2007R2 is already installed?</description>
		<content:encoded><![CDATA[<p>Thank you for the script, works almost perfectly!  I have the wsf script set to apply at computer start up and it goes through perfectly.  The only issue is that every time a person restarts, the script runs again and the client is installed again.  Is there a simple switch I can put it to not run the script if Communicator 2007R2 is already installed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gordon</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-3303</link>
		<dc:creator>Gordon</dc:creator>
		<pubDate>Wed, 25 Aug 2010 04:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-3303</guid>
		<description>Thanks for the script.  My GPO skills are a bit rusty and I&#039;m having difficulty getting it to apply.  I think my issue may be that I can&#039;t do what I want (run as a startup script but limit to specific users on certain machines).

I&#039;d like to have it run on laptops in an OU the GPO is applied to, but only for users in a specific Security Group.  We have configured the script as startup script and set the security to allow read/apply for the test security group.</description>
		<content:encoded><![CDATA[<p>Thanks for the script.  My GPO skills are a bit rusty and I&#8217;m having difficulty getting it to apply.  I think my issue may be that I can&#8217;t do what I want (run as a startup script but limit to specific users on certain machines).</p>
<p>I&#8217;d like to have it run on laptops in an OU the GPO is applied to, but only for users in a specific Security Group.  We have configured the script as startup script and set the security to allow read/apply for the test security group.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curtis Johnstone</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-2619</link>
		<dc:creator>Curtis Johnstone</dc:creator>
		<pubDate>Wed, 26 May 2010 04:42:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-2619</guid>
		<description>Hi,
This problem and the patch for it look really old - it was fixed by the June 2009 update for Communicator 2007 R2.  You can use the script today to include a fix for this.  Just incorporate the latest Communicator 2007 R2 .msp update file into the .msi file that the script points to - that will install Communicator (i.e. you can apply patches to an install file).

The latest Communicator 2007 R2 release is from April 2010 - this will include a fix for your issue and many more issues. You can download the corresponding .msp file here: http://support.microsoft.com/kb/978564.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
This problem and the patch for it look really old &#8211; it was fixed by the June 2009 update for Communicator 2007 R2.  You can use the script today to include a fix for this.  Just incorporate the latest Communicator 2007 R2 .msp update file into the .msi file that the script points to &#8211; that will install Communicator (i.e. you can apply patches to an install file).</p>
<p>The latest Communicator 2007 R2 release is from April 2010 &#8211; this will include a fix for your issue and many more issues. You can download the corresponding .msp file here: <a href="http://support.microsoft.com/kb/978564." rel="nofollow">http://support.microsoft.com/kb/978564.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-2606</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Mon, 24 May 2010 21:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-2606</guid>
		<description>Link to patch...if anyone needs it.

http://support.microsoft.com/kb/969695/</description>
		<content:encoded><![CDATA[<p>Link to patch&#8230;if anyone needs it.</p>
<p><a href="http://support.microsoft.com/kb/969695/" rel="nofollow">http://support.microsoft.com/kb/969695/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://blog.insideocs.com/2009/12/01/microsoft-uc-client-deployment-script/comment-page-1/#comment-2605</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Mon, 24 May 2010 21:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insideocs.com/?p=694#comment-2605</guid>
		<description>Great script. Works as advertised. Keep up the good work!!

I have an issue with my 64x computers. I keep getting this error as described by Microsoft.

http://support.microsoft.com/kb/972085/

I apply the patch they mention and it fixes the problem. I was wondering if you could incorporate the patch into your script or is there a way to add the patch myself?

Thanks</description>
		<content:encoded><![CDATA[<p>Great script. Works as advertised. Keep up the good work!!</p>
<p>I have an issue with my 64x computers. I keep getting this error as described by Microsoft.</p>
<p><a href="http://support.microsoft.com/kb/972085/" rel="nofollow">http://support.microsoft.com/kb/972085/</a></p>
<p>I apply the patch they mention and it fixes the problem. I was wondering if you could incorporate the patch into your script or is there a way to add the patch myself?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

