<?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.cgoosen.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>Chris's Blog</title>
	
	<link>http://www.cgoosen.com</link>
	<description>It's called thinking, go with it...</description>
	<lastBuildDate>Mon, 09 Jan 2012 08:35:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.cgoosen.com/cgoosen" /><feedburner:info uri="cgoosen" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Decoding Lync’s Client-Side Error Messages</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/9guhS9pcyis/</link>
		<comments>http://www.cgoosen.com/2012/01/decoding-lyncs-client-side-error-messages/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 08:35:24 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Lync]]></category>
		<category><![CDATA[Office 365]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/?p=737</guid>
		<description><![CDATA[Some of Lync’s Client-side error messages don’t really explain the reason for the failure. Luckily my friend Greig Sheridan has started to compile a very handy list of these on his blog. If you ever spend time troubleshooting Lync client side error messages, I would definitely recommend that you check it out. Here’s a link: [...]]]></description>
			<content:encoded><![CDATA[<p>Some of Lync’s Client-side error messages don’t really explain the reason for the failure. Luckily my friend Greig Sheridan has started to compile a very handy list of these on his <a href="https://greiginsydney.com/" target="_blank">blog.</a></p>
<p>If you ever spend time troubleshooting Lync client side error messages, I would definitely recommend that you check it out. Here’s a link: </p>
<p><a href="https://greiginsydney.com/decoding-lyncs-client-side-error-messages/" target="_blank">https://greiginsydney.com/decoding-lyncs-client-side-error-messages/</a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/9guhS9pcyis" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2012/01/decoding-lyncs-client-side-error-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2012/01/decoding-lyncs-client-side-error-messages/</feedburner:origLink></item>
		<item>
		<title>Exchange 2010 “Anonymous Relay” Receive Connector</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/rGi1z_lZyUM/</link>
		<comments>http://www.cgoosen.com/2012/01/exchange-2010-anonymous-relay-receive-connector/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 03:42:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Exchange Server]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/?p=732</guid>
		<description><![CDATA[In almost every environment I have ever seen there are usually some devices and/or systems that need to send email and typically these will require some SMTP server to relay these messages. More often than not these also do not have the ability to authenticate to the relaying host. How do we deal with these [...]]]></description>
			<content:encoded><![CDATA[<p>In almost every environment I have ever seen there are usually some devices and/or systems that need to send email and typically these will require some SMTP server to relay these messages. More often than not these also do not have the ability to authenticate to the relaying host.</p>
<p>How do we deal with these in Exchange? I have seen some pretty silly solutions and the default answer seems to be “Just allow anonymous users on the default connector”. This is not true and is actually quite a dangerous thing to do, so my advice is DON’T. In fact, I would go so far as to say, don’t ever touch the default connector. The correct way is to create a new receive connector and allow relay from only the devices that are required to use this connector.</p>
<p>Allowing anonymous relay is serious and requires thought and planning. If could be exploited by spammers and IMHO should not be configured on internet-facing servers.</p>
<p>So lets say that we have three devices that need to relay anonymously, their IPs are 10.0.0.30, 10.0.0.31 and 10.0.0.32. First we need to create a new receive connector:</p>
<blockquote><p><span style="font-family: 'Courier New';">New-ReceiveConnector -Name &#8220;Anonymous Relay Connector&#8221; -Usage Custom -PermissionGroups AnonymousUsers -Bindings 10.0.0.20:25 -RemoteIpRanges 10.0.0.30-10.0.0.32 –Banner &#8220;220 Anonymous Relay Connector&#8221;</span></p></blockquote>
<p>Next we need to to grant relay permission to anonymous connections on the new Receive connector:</p>
<blockquote><p><span style="font-family: 'Courier New';">Get-ReceiveConnector -Identity &#8220;Anonymous Relay Connector&#8221; | Add-ADPermission -User &#8220;NT AUTHORITY\ANONYMOUS LOGON&#8221; -ExtendedRights &#8220;Ms-Exch-SMTP-Accept-Any-Recipient&#8221;</span></p></blockquote>
<p>What happens if you have multiple servers and would like to duplicate your receive connector settings. Say for example you have two Exchange servers and you have a receive connector on a server called EXHUB01 that allows 100 devices to relay. You would now like to create the same connector on EXHUB02. Instead of manually adding each address, you could do this:</p>
<blockquote><p><span style="font-family: 'Courier New';">New-ReceiveConnector &#8220;Anonymous Relay Connector&#8221; -Server EXHUB02 -Usage Custom -PermissionGroups AnonymousUsers -Bindings 10.0.0.21:25 -RemoteIPRanges ( Get-ReceiveConnector &#8220;EXHUB01\Anonymous Relay Connector&#8221; ).RemoteIPRanges -Banner &#8220;220 Anonymous Relay Connector&#8221;</span></p></blockquote>
<p>Don’t forget to grant relay permission to anonymous connections on the new Receive connector:</p>
<blockquote><p><span style="font-family: 'Courier New';">Get-ReceiveConnector -Identity &#8220;EXHUB02\Anonymous Relay Connector&#8221; | Add-ADPermission -User &#8220;NT AUTHORITY\ANONYMOUS LOGON&#8221; -ExtendedRights &#8220;Ms-Exch-SMTP-Accept-Any-Recipient&#8221;</span></p></blockquote>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/rGi1z_lZyUM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2012/01/exchange-2010-anonymous-relay-receive-connector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2012/01/exchange-2010-anonymous-relay-receive-connector/</feedburner:origLink></item>
		<item>
		<title>Exchange 2010 Service Pack 2 (SP2)</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/3oW6u-srwzY/</link>
		<comments>http://www.cgoosen.com/2011/12/exchange-2010-service-pack-2-sp2/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 07:56:12 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Exchange Server]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/?p=730</guid>
		<description><![CDATA[Just in case you missed it, Exchange 2010 SP2 was released earlier this month. The following features and functionality has changed since Service Pack 1 for Exchange 2010: Hybrid Configuration Wizard Address Book Policies Cross-Site Silent Redirection for Outlook Web App Mini Version of Outlook Web App Mailbox Replication Service Mailbox Auto-Mapping Multi-Valued Custom Attributes [...]]]></description>
			<content:encoded><![CDATA[<p>Just in case you missed it, Exchange 2010 SP2 was released earlier this month. The following features and functionality has changed since Service Pack 1 for Exchange 2010:</p>
<ul>
<li>Hybrid Configuration Wizard </li>
<li>Address Book Policies </li>
<li>Cross-Site Silent Redirection for Outlook Web App </li>
<li>Mini Version of Outlook Web App </li>
<li>Mailbox Replication Service </li>
<li>Mailbox Auto-Mapping </li>
<li>Multi-Valued Custom Attributes </li>
<li>Litigation Hold</li>
</ul>
<p>I wanted to call out a couple of these that I have been eagerly awaiting:</p>
<p><strong>Hybrid Configuration Wizard     <br /></strong>Exchange 2010 SP2 introduces the Hybrid Configuration Wizard which provides you with a streamlined process to configure a hybrid deployment between on-premises and Office 365 Exchange organizations. Hybrid deployments provide the seamless look and feel of a single Exchange organization and offer administrators the ability to extend the feature-rich experience and administrative control of an on-premises organization to the cloud.</p>
<p><strong>Cross-Site Silent Redirection for Outlook Web App</strong>    <br />In Exchange 2010 SP1, there was three types of redirection for OWA in Exchange 2010 on-premises:</p>
<ul>
<li>Manual Redirection </li>
<li>Temporary Manual Redirection </li>
<li>Legacy Silent Redirection (for Exchange 2003/2007)</li>
</ul>
<p>With Exchange 2010 SP2, you can enable a silent redirection when a Client Access server receives a client request that is better serviced by a Client Access server located in another Active Directory site. This silent redirection can also provide a single sign-on experience when forms-based authentication is enabled on each Client Access server.</p>
<p>For more information about what’s new in Exchange 2010 SP2, <a href="http://technet.microsoft.com/en-us/library/hh529924.aspx" target="_blank">click here</a></p>
<p>To download Exchange 2010 SP2, <a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=28190" target="_blank">click here</a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/3oW6u-srwzY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2011/12/exchange-2010-service-pack-2-sp2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2011/12/exchange-2010-service-pack-2-sp2/</feedburner:origLink></item>
		<item>
		<title>Microsoft Online Services Internet Connection Performance Test</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/KKKrAoqIW1s/</link>
		<comments>http://www.cgoosen.com/2011/11/microsoft-online-services-internet-connection-performance-test/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 01:28:12 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Office 365]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/2011/11/microsoft-online-services-internet-connection-performance-test/</guid>
		<description><![CDATA[This handy little tool has been around for some time now but I’ve found that it does not seem to be very well known so I thought I would write up a quick post. This performance tool tests your Internet connection to a Microsoft Online Services data center and measures the response times, bandwidth, and [...]]]></description>
			<content:encoded><![CDATA[<p>This handy little tool has been around for some time now but I’ve found that it does not seem to be very well known so I thought I would write up a quick post.</p>
<blockquote><p>This performance tool tests your Internet connection to a Microsoft Online Services data center and measures the response times, bandwidth, and overall connection quality. The results can help you evaluate your network configuration for potential use with Microsoft Online Services.</p>
</blockquote>
<p align="center"><a href="http://www.cgoosen.com/wp-content/uploads/2011/11/image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.cgoosen.com/wp-content/uploads/2011/11/image_thumb.png" width="544" height="368" /></a></p>
<p>For America use <a href="http://speedtest.microsoftonline.com" target="_blank">http://speedtest.microsoftonline.com</a></p>
<p>For Asia Pacific use <a href="http://speedtest.apac.microsoftonline.com" target="_blank">http://speedtest.apac.microsoftonline.com</a></p>
<p>For Europe, Middle East and Africa use <a href="http://speedtest.emea.microsoftonline.com" target="_blank">http://speedtest.emea.microsoftonline.com</a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/KKKrAoqIW1s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2011/11/microsoft-online-services-internet-connection-performance-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2011/11/microsoft-online-services-internet-connection-performance-test/</feedburner:origLink></item>
		<item>
		<title>Jetstress Error: The MSExchange Database or MSExchange Database ==&gt; Instrances performance counter category isn’t registered</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/rv0i42rvlas/</link>
		<comments>http://www.cgoosen.com/2011/10/jetstress-error-the-msexchange-database-or-msexchange-database-instrances-performance-counter-category-isnt-registered/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 05:06:23 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Exchange Server]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/2011/10/jetstress-error-the-msexchange-database-or-msexchange-database-instrances-performance-counter-category-isnt-registered/</guid>
		<description><![CDATA[I recently came across this error while using Jetstress to test and validate the performance of their Exchange storage. I was running the tool on Windows Server 2008 R2 and I don’t recall ever seeing this before. After finding what is actually an easy fix, I thought I would&#160; write up this post just in [...]]]></description>
			<content:encoded><![CDATA[<p>I recently came across this error while using Jetstress to test and validate the performance of their Exchange storage. I was running the tool on Windows Server 2008 R2 and I don’t recall ever seeing this before. After finding what is actually an easy fix, I thought I would&#160; write up this post just in case this has anyone else baffled. The entire error was:</p>
<blockquote><p>Ensure that you’re running the application as a member of built-in Administrators security group.</p>
<p>The MSExchange Database or MSExchange Database ==&gt; Instrances performance counter category isn&#8217;t registered.</p>
</blockquote>
<p><font style="background-color: #eef8ff"><a href="http://www.cgoosen.com/wp-content/uploads/2011/10/jetstress1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="jetstress1" border="0" alt="jetstress1" src="http://www.cgoosen.com/wp-content/uploads/2011/10/jetstress1_thumb.png" width="596" height="345" /></a></font></p>
<p>The admin account I was using is a member of the domain admins security group so I assumed I had the correct permissions but went away and checked just to be sure. I also checked to make sure that the domain admins group was a member of the local built-in Administrators security group, which it was. After spending a few minutes thinking about it, I thought I would try running Jetstress “as an administrator” (right-click the shortcut and select “Run as administrator”</p>
<p>That solved the problem.</p>
<p><a href="http://www.cgoosen.com/wp-content/uploads/2011/10/jetstress2.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="jetstress2" border="0" alt="jetstress2" src="http://www.cgoosen.com/wp-content/uploads/2011/10/jetstress2_thumb.png" width="603" height="329" /></a></p>
<p>I have since checked the Jetstress installation in my Exchange 2010 Lab which also runs on Windows Server 2008 R2 and this step is not required there, it works fine by just clicking the Jetstress shortcut (no right-click required). Not really worth spending time investigating the cause as it may just be a once-off occurrence, but at least it is now documented.</p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/rv0i42rvlas" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2011/10/jetstress-error-the-msexchange-database-or-msexchange-database-instrances-performance-counter-category-isnt-registered/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2011/10/jetstress-error-the-msexchange-database-or-msexchange-database-instrances-performance-counter-category-isnt-registered/</feedburner:origLink></item>
		<item>
		<title>Tech-Ed Australia To Go: Moving Email from On Premise Into the Cloud</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/Je1LxsdHG3E/</link>
		<comments>http://www.cgoosen.com/2011/10/tech-ed-australia-to-go-moving-email-from-on-premise-into-the-cloud/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 08:25:26 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Tech-Ed]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/2011/10/tech-ed-australia-to-go-moving-email-from-on-premise-into-the-cloud/</guid>
		<description><![CDATA[Toby and I talking about our “Microsoft Office 365: From Simple Migration to a Hybrid Environment” session at At Tech-Ed Australia 2011. Toby and I talking about our session at At Tech-Ed Australia 2011 &#160; If you missed it, the recorded session and slides are available for download here: http://cgoo.se/ndiUkE Here is no comments yet [...]]]></description>
			<content:encoded><![CDATA[<p>Toby and I talking about our “Microsoft Office 365: From Simple Migration to a Hybrid Environment” session at At Tech-Ed Australia 2011.</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:7d607b52-f893-4cd2-b511-6cfdf46e7597" class="wlWriterEditableSmartContent" style="margin: 0px auto; width: 542px; display: block; float: none; padding: 0px;">
<div><object width="542" height="304" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/JsRlLKN7d8s?hl=en&amp;hd=1" /><embed width="542" height="304" type="application/x-shockwave-flash" src="http://www.youtube.com/v/JsRlLKN7d8s?hl=en&amp;hd=1" /></object></div>
<div style="width: 542px; clear: both; font-size: .8em;">Toby and I talking about our session at At Tech-Ed Australia 2011</div>
</div>
<p>&nbsp;</p>
<p>If you missed it, the recorded session and slides are available for download here: <a href="http://cgoo.se/ndiUkE" target="_blank">http://cgoo.se/ndiUkE</a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/Je1LxsdHG3E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2011/10/tech-ed-australia-to-go-moving-email-from-on-premise-into-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2011/10/tech-ed-australia-to-go-moving-email-from-on-premise-into-the-cloud/</feedburner:origLink></item>
		<item>
		<title>Chris’s Blog – Now mobile friendly :)</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/rpIe_8kR-OQ/</link>
		<comments>http://www.cgoosen.com/2011/09/chriss-blog-now-mobile-friendly/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 06:33:17 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/2011/09/chriss-blog-now-mobile-friendly/</guid>
		<description><![CDATA[This post is slightly off-topic compared to my regular posts, but its something I’ve been thinking about for some time now and has been one of those things sitting on my to do list that always gets trumped by something more important. While my blog has never been inaccessible from mobile devices, I have never [...]]]></description>
			<content:encoded><![CDATA[<p>This post is slightly off-topic compared to my regular posts, but its something I’ve been thinking about for some time now and has been one of those things sitting on my to do list that always gets trumped by something more important. </p>
<p>While my blog has never been inaccessible from mobile devices, I have never really put much thought or effort into improving the experience for mobile users. I was recently reading some interesting statistics on the explosive growth of mobile internet usage and that prompted me to do something about it. These statistics are probably best summarised by this:</p>
<p align="center"><a href="http://www.cgoosen.com/wp-content/uploads/2011/09/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.cgoosen.com/wp-content/uploads/2011/09/image_thumb.png" width="471" height="408" /></a></p>
<p>You will now be able to access all the same content from your mobile device in a much more mobile friendly manner. And just because I am a geek I’ve even added a .mobil domain name so you’ll also be able to access it at <a href="http://cgoosen.mobi">http://cgoosen.mobi</a></p>
<p>I also wanted to share this great video that goes into some smartphone mobile marketing statistics. Don’t worry.. I don’t ever intend on introducing ads or marketing of any kind here, I just think the stats are interesting.</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 448px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:cc87ab2e-23f3-484e-8d0c-20621d88a19c" class="wlWriterEditableSmartContent">
<div><object width="448" height="252"><param name="movie" value="http://www.youtube.com/v/xzmQm-hRgTg?hl=en&amp;hd=1"></param><embed src="http://www.youtube.com/v/xzmQm-hRgTg?hl=en&amp;hd=1" type="application/x-shockwave-flash" width="448" height="252"></embed></object></div>
</div>
<p> 
<p><a href="http://www.digitalbuzzblog.com/2011-mobile-statistics-stats-facts-marketing-infographic/" target="_blank">Inforgraphic source</a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/rpIe_8kR-OQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2011/09/chriss-blog-now-mobile-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2011/09/chriss-blog-now-mobile-friendly/</feedburner:origLink></item>
		<item>
		<title>Microsoft "Future of productivity"</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/tFQyMXCKqzg/</link>
		<comments>http://www.cgoosen.com/2011/09/microsoft-future-of-productivity/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 06:33:45 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Tech-Ed]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/2011/09/microsoft-future-of-productivity/</guid>
		<description><![CDATA[I recently saw this at Tech-Ed Australia and finally managed to track it down so I could share it. I think it’s such a great video and just excites me about the &#34;future of productivity&#34;. Here is no comments yet by the time your rss reader get this, Do you want to be the first [...]]]></description>
			<content:encoded><![CDATA[<p>I recently saw this at Tech-Ed Australia and finally managed <a href="http://cloudthemind.com/2011/03/23/productivity-vision-looking-back-to-get-a-sense-of-today/" target="_blank">to track it down</a> so I could share it. I think it’s such a great video and just excites me about the &quot;future of productivity&quot;.</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 554px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:7e992584-a640-42d8-a110-905625d709d3" class="wlWriterEditableSmartContent">
<div><object width="554" height="310"><param name="movie" value="http://www.youtube.com/v/BU-TGk5JBT4?hl=en&amp;hd=1"></param><embed src="http://www.youtube.com/v/BU-TGk5JBT4?hl=en&amp;hd=1" type="application/x-shockwave-flash" width="554" height="310"></embed></object></div>
</div>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/tFQyMXCKqzg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2011/09/microsoft-future-of-productivity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2011/09/microsoft-future-of-productivity/</feedburner:origLink></item>
		<item>
		<title>Tech-Ed Australia 2011 – Must see sessions</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/9J9mbrVDqI0/</link>
		<comments>http://www.cgoosen.com/2011/08/tech-ed-australia-2011-must-see-sessions/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 10:57:38 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Tech-Ed]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/2011/08/tech-ed-australia-2011-must-see-sessions/</guid>
		<description><![CDATA[After an interesting and somewhat different keynote, Tech-Ed 2011 has officially kicked off. While everyone is enjoying a few cold ones, I thought I would take the time to tell you about some of the sessions I am excited about attending this year. There are many great speakers at Tech-Ed this year, these are just [...]]]></description>
			<content:encoded><![CDATA[<p>After an interesting and somewhat different keynote, Tech-Ed 2011 has officially kicked off. While everyone is enjoying a few cold ones, I thought I would take the time to tell you about some of the sessions I am excited about attending this year.</p>
<p>There are many great speakers at Tech-Ed this year, these are just some of the sessions I plan to attend.</p>
<ul>
<li>EXL310: &quot;Upgrading to Exchange 2010: Notes from Field&quot; with Colin Lee and Sofiane Behraoui</li>
<li>EXL309: &quot;Microsoft Lync 2010: How to go big with voice&quot; with Brendan Carius and Selvan Loganathan</li>
<li>OFS-OFC309: &quot;From Zero to Productivity with Office 365&quot; with Ben Walters, Chris Oconnor and Lee Hickin</li>
<li>EXL303: &quot;Exchange Server 2010: High Availability Concepts&quot; with Scott Schnoll</li>
<li>EXL304: &quot;Load Balancing with Microsoft Exchange Server 2010&quot; with Andrew Ehrensing</li>
</ul>
<p>Then of course there is my session with Toby Knight, EXL-OFC311: “Microsoft Office 365: From Simple Migration to a Hybrid Environment” we will be in Arena 1B at 5 PM tomorrow… we’ve got some great schwag so make sure you stop by!</p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up <img src="http://feeds.feedburner.com/~r/cgoosen/~4/9J9mbrVDqI0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2011/08/tech-ed-australia-2011-must-see-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2011/08/tech-ed-australia-2011-must-see-sessions/</feedburner:origLink></item>
		<item>
		<title>Exchange 2010 “You must close all dialog boxes before you can close Exchange Management Console”</title>
		<link>http://feeds.cgoosen.com/~r/cgoosen/~3/PXOFyqmgoXg/</link>
		<comments>http://www.cgoosen.com/2011/08/exchange-2010-you-must-close-all-dialog-boxes-before-you-can-close-exchange-management-console/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 03:51:17 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Exchange Server]]></category>

		<guid isPermaLink="false">http://www.cgoosen.com/2011/08/exchange-2010-you-must-close-all-dialog-boxes-before-you-can-close-exchange-management-console/</guid>
		<description><![CDATA[I’ve seen this error around a few times over the last while but have never really paid too much attention to it: It seems it only occurs in the management console if you have IE9 installed on your Exchange 2010 SP1 server. Previously the recommendation was to uninstall IE9 or just live with it. I [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve seen this error around a few times over the last while but have never really paid too much attention to it:</p>
<p align="center"><a href="http://www.cgoosen.com/wp-content/uploads/2011/08/image2.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.cgoosen.com/wp-content/uploads/2011/08/image_thumb2.png" width="350" height="131" /></a></p>
<p>It seems it only occurs in the management console if you have IE9 installed on your Exchange 2010 SP1 server. Previously the recommendation was to uninstall IE9 or just live with it. I recently installed <a href="http://www.cgoosen.com/2011/08/update-rollup-5-for-exchange-server-2010-service-pack-1/" target="_blank">Update Rollup 5 for Exchange 2010 SP1</a> in my lab environment and it seems to have fixed this error. </p>
<p>Obviously I would recommend thorough testing before deploying any updates in production, but I thought it would be worth mentioning that it does seem to fix this error as well.</p>
By the time  your rss reader get this post here is <strong> 2 </strong>comments ,Welcome you come to leave your opinion !<img src="http://feeds.feedburner.com/~r/cgoosen/~4/PXOFyqmgoXg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cgoosen.com/2011/08/exchange-2010-you-must-close-all-dialog-boxes-before-you-can-close-exchange-management-console/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.cgoosen.com/2011/08/exchange-2010-you-must-close-all-dialog-boxes-before-you-can-close-exchange-management-console/</feedburner:origLink></item>
	</channel>
</rss>

