<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Eric&#039;s InfoTech Blog</title>
	<atom:link href="http://ehausig.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ehausig.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 20 Nov 2009 17:40:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ehausig.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Eric&#039;s InfoTech Blog</title>
		<link>http://ehausig.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ehausig.wordpress.com/osd.xml" title="Eric&#039;s InfoTech Blog" />
	<atom:link rel='hub' href='http://ehausig.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SQL shipping hyperlinks</title>
		<link>http://ehausig.wordpress.com/2009/11/20/sql-shipping-hyperlinks/</link>
		<comments>http://ehausig.wordpress.com/2009/11/20/sql-shipping-hyperlinks/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 17:40:41 +0000</pubDate>
		<dc:creator>ehausig</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://ehausig.wordpress.com/?p=36</guid>
		<description><![CDATA[I found this discussion thread while looking for ways to construct hyperlinks for tracking numbers on a web page: http://community.salesforce.com/sforce/board/message?board.id=practices&#38;thread.id=7643 UPS, FedEx and DHL each use a slightly different url format. I took their example and built a simple SQL case statement: select tracking_url = case when x.shipping_method = 'FedEx' then 'http://www.fedex.com/Tracking?ascend_header=1&#38;clienttype=dotcom&#38;cntry_code=us&#38;language=english&#38;tracknumbers=' &#38; x.tracking_number when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=36&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I found this discussion thread while looking for ways to construct hyperlinks for tracking numbers on a web page:</p>
<p><a href="http://community.salesforce.com/sforce/board/message?board.id=practices&amp;thread.id=7643">http://community.salesforce.com/sforce/board/message?board.id=practices&amp;thread.id=7643</a></p>
<p>UPS, FedEx and DHL each use a slightly different url format. I took their example and built a simple SQL case statement:</p>
<p><code>select<br />
    tracking_url = case when x.shipping_method = 'FedEx'<br />
                                   then 'http://www.fedex.com/Tracking?ascend_header=1&amp;clienttype=dotcom&amp;cntry_code=us&amp;language=english&amp;tracknumbers=' &amp; x.tracking_number<br />
                                   when x.shipping_method = 'UPS'<br />
                                   then 'http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&amp;sort_by=status&amp;loc=en_US&amp;InquiryNumber1=' &amp; x.tracking_number &amp; '&amp;track.x=32&amp;track.y=7'<br />
                                   when x.shipping_method = 'DHL'<br />
                                   then lhttp://track.dhl-usa.com/TrackByNbr.asp?ShipmentNumber=' &amp; x.tracking_number<br />
                            else<br />
                                   'Unknown shipping method!'<br />
                            end<br />
from<br />
    dbo.orders x<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ehausig.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ehausig.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ehausig.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ehausig.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ehausig.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ehausig.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ehausig.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ehausig.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ehausig.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ehausig.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ehausig.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ehausig.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ehausig.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ehausig.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=36&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ehausig.wordpress.com/2009/11/20/sql-shipping-hyperlinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea6a02defda7a060b9beddf642fdabc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ehausig</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Server &#8211; post installation</title>
		<link>http://ehausig.wordpress.com/2009/11/20/sql-server-post-installation/</link>
		<comments>http://ehausig.wordpress.com/2009/11/20/sql-server-post-installation/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 16:35:14 +0000</pubDate>
		<dc:creator>ehausig</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[installation]]></category>

		<guid isPermaLink="false">http://ehausig.wordpress.com/?p=31</guid>
		<description><![CDATA[Here are some steps to perform after installing SQL Server: http://www.sql-server-performance.com/articles/dba/post_installation_steps_p1.aspx I usually keep a spreadsheet handy with all of &#8220;specialized&#8221; installation steps that I want to perform. My company uses a SharePoint wiki for configuration management, so after I perform the steps I enter them into the config mgmt wiki.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=31&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here are some steps to perform after installing SQL Server:</p>
<p><a href="http://www.sql-server-performance.com/articles/dba/post_installation_steps_p1.aspx">http://www.sql-server-performance.com/articles/dba/post_installation_steps_p1.aspx</a></p>
<p>I usually keep a spreadsheet handy with all of &#8220;specialized&#8221; installation steps that I want to perform. My company uses a SharePoint wiki for configuration management, so after I perform the steps I enter them into the config mgmt wiki.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ehausig.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ehausig.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ehausig.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ehausig.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ehausig.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ehausig.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ehausig.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ehausig.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ehausig.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ehausig.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ehausig.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ehausig.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ehausig.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ehausig.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=31&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ehausig.wordpress.com/2009/11/20/sql-server-post-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea6a02defda7a060b9beddf642fdabc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ehausig</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint online store example</title>
		<link>http://ehausig.wordpress.com/2009/11/20/sharepoint-online-store-example/</link>
		<comments>http://ehausig.wordpress.com/2009/11/20/sharepoint-online-store-example/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 15:44:16 +0000</pubDate>
		<dc:creator>ehausig</dc:creator>
				<category><![CDATA[MOSS/SharePoint]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://ehausig.wordpress.com/?p=25</guid>
		<description><![CDATA[While I was researching public-facing sites that leverage SharePoint, I stumbled across one in Hebrew. I think it demonstrates how flexible SharePoint can be with regards to site design: http://www.cellcom.co.il/Pages/default.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=25&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While I was researching public-facing sites that leverage SharePoint, I stumbled across one in Hebrew. I think it demonstrates how flexible SharePoint can be with regards to site design:</p>
<p><a href="http://www.cellcom.co.il/Pages/default.aspx">http://www.cellcom.co.il/Pages/default.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ehausig.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ehausig.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ehausig.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ehausig.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ehausig.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ehausig.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ehausig.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ehausig.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ehausig.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ehausig.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ehausig.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ehausig.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ehausig.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ehausig.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=25&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ehausig.wordpress.com/2009/11/20/sharepoint-online-store-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea6a02defda7a060b9beddf642fdabc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ehausig</media:title>
		</media:content>
	</item>
		<item>
		<title>Exchange Server 2010: Overview</title>
		<link>http://ehausig.wordpress.com/2009/11/18/exchange-server-2010-overview/</link>
		<comments>http://ehausig.wordpress.com/2009/11/18/exchange-server-2010-overview/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:39:51 +0000</pubDate>
		<dc:creator>ehausig</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ehausig.wordpress.com/?p=21</guid>
		<description><![CDATA[Jaap Wesselius wrote a fairly comprehensive overview of Microsoft Exchange Server 2010: http://www.simple-talk.com/sysadmin/exchange/introduction-to-exchange-server-2010/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=21&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Jaap Wesselius wrote a fairly comprehensive overview of Microsoft Exchange Server 2010:</p>
<p><a href="http://www.simple-talk.com/sysadmin/exchange/introduction-to-exchange-server-2010/">http://www.simple-talk.com/sysadmin/exchange/introduction-to-exchange-server-2010/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ehausig.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ehausig.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ehausig.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ehausig.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ehausig.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ehausig.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ehausig.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ehausig.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ehausig.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ehausig.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ehausig.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ehausig.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ehausig.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ehausig.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=21&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ehausig.wordpress.com/2009/11/18/exchange-server-2010-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea6a02defda7a060b9beddf642fdabc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ehausig</media:title>
		</media:content>
	</item>
		<item>
		<title>Co-location Hosting Tips</title>
		<link>http://ehausig.wordpress.com/2009/11/18/co-location-hosting-tips/</link>
		<comments>http://ehausig.wordpress.com/2009/11/18/co-location-hosting-tips/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:29:14 +0000</pubDate>
		<dc:creator>ehausig</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ehausig.wordpress.com/?p=17</guid>
		<description><![CDATA[I was researching &#8220;best practices&#8221; for managed hosting and stumbled upon this discussion thread: http://it.slashdot.org/story/09/11/09/1953241/How-Do-You-Evaluate-a-Data-Center?from=rss<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=17&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was researching &#8220;best practices&#8221; for managed hosting and stumbled upon this discussion thread:</p>
<p><a href="http://it.slashdot.org/story/09/11/09/1953241/How-Do-You-Evaluate-a-Data-Center?from=rss">http://it.slashdot.org/story/09/11/09/1953241/How-Do-You-Evaluate-a-Data-Center?from=rss</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ehausig.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ehausig.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ehausig.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ehausig.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ehausig.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ehausig.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ehausig.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ehausig.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ehausig.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ehausig.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ehausig.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ehausig.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ehausig.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ehausig.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=17&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ehausig.wordpress.com/2009/11/18/co-location-hosting-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea6a02defda7a060b9beddf642fdabc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ehausig</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;This computer does not support video conferencing&#8221;</title>
		<link>http://ehausig.wordpress.com/2009/11/18/this-computer-does-not-support-video-conferencing/</link>
		<comments>http://ehausig.wordpress.com/2009/11/18/this-computer-does-not-support-video-conferencing/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:17:12 +0000</pubDate>
		<dc:creator>ehausig</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://ehausig.wordpress.com/?p=4</guid>
		<description><![CDATA[I was cleaning up my brother&#8217;s iMac and found that audio conferencing worked in  iChat, but video conferencing would now. I opened the Audio/Video preferences of iChat aound received the following message: &#8220;This computer does not support video conferencing&#8221; I found the solution to the problem on this discussion thread: http://discussions.apple.com/thread.jspa?threadID=1460351 In summary, here are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=4&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was cleaning up my brother&#8217;s iMac and found that audio conferencing worked in  iChat, but video conferencing would now. I opened the Audio/Video preferences of iChat aound received the following message:</p>
<p>&#8220;This computer does not support video conferencing&#8221;</p>
<p>I found the solution to the problem on this discussion thread:</p>
<p><a href="http://discussions.apple.com/thread.jspa?threadID=1460351">http://discussions.apple.com/thread.jspa?threadID=1460351</a></p>
<p>In summary, here are the steps I followed to resolve the issue:</p>
<ol>
<li>Located the following file on my MacBook Pro:<code><br />
/System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component<br />
</code></li>
<li>Zipped it up and attached it to an email message and mailed myself.</li>
<li>Logged into my brother&#8217;s iMac, retrieved the email message, saved and unzipped the file.</li>
<li>Copied the file to the following folder, overwriting the existing file that was there:<code><br />
/System/Library/QuickTime/<br />
</code></li>
<li>Launched iChat and the video conferencing now works!</li>
</ol>
<p>Note that iChat must be closed for you to overwrite the file, otherwise you&#8217;ll get a &#8220;permissions&#8221; error message. Also, there appeared to be several conditions under which this message can occur&#8211;this is just the fix that worked for me.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ehausig.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ehausig.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ehausig.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ehausig.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ehausig.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ehausig.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ehausig.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ehausig.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ehausig.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ehausig.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ehausig.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ehausig.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ehausig.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ehausig.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ehausig.wordpress.com&amp;blog=10563181&amp;post=4&amp;subd=ehausig&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ehausig.wordpress.com/2009/11/18/this-computer-does-not-support-video-conferencing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea6a02defda7a060b9beddf642fdabc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ehausig</media:title>
		</media:content>
	</item>
	</channel>
</rss>
