<?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>Mike Crowley&#039;s Whiteboard</title>
	<atom:link href="http://mikecrowley.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikecrowley.wordpress.com</link>
	<description>Spread the Knowledge!</description>
	<lastBuildDate>Fri, 24 May 2013 15:13:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mikecrowley.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/49028ca880622849c9e3b18855a67e58?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Mike Crowley&#039;s Whiteboard</title>
		<link>http://mikecrowley.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mikecrowley.wordpress.com/osd.xml" title="Mike Crowley&#039;s Whiteboard" />
	<atom:link rel='hub' href='http://mikecrowley.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Converting SMTP Proxy Addresses to Lowercase</title>
		<link>http://mikecrowley.wordpress.com/2012/05/14/converting-smtp-proxy-addresses-to-lowercase/</link>
		<comments>http://mikecrowley.wordpress.com/2012/05/14/converting-smtp-proxy-addresses-to-lowercase/#comments</comments>
		<pubDate>Mon, 14 May 2012 06:52:27 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[ActiveDirectory]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=1003</guid>
		<description><![CDATA[Update: Be aware, this script has not been tested with SIP, X400 or other address types. I am working on an update to validate these scenarios, but in the meantime, proceed at your own risk with these address types. I recently encountered a question in an online forum where someone asked for a script to [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=1003&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><span style="color:#ff0000;"><strong>Update: Be aware, this script has not been tested with SIP, X400 or other address types. I am working on an update to validate these scenarios, but in the meantime, proceed at your own risk with these address types.</strong></span></p>
<p>I recently encountered a question in an online forum where someone asked for a script to convert all of their user’s email addresses to lower case values.  While this doesn’t affect the message delivery, it can have an impact on aesthetics when the address is displayed in an external recipient’s email client.  An Exchange Email Address Policy can do this to some degree, but I wanted to see how it could be done with PowerShell.</p>
<p>The challenge with a script like this is twofold:</p>
<ol>
<li>Email addresses (proxy addresses) are a multi-valued attribute, which can be tricky to work with.</li>
<li>PowerShell is generally not case-sensitive, and therefore when we try to rename Mr. Gallalee’s email address in the screenshot below, we can see that it does not work:</li>
</ol>
<p><a href="http://mikecrowley.files.wordpress.com/2012/05/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-style:initial;border-color:initial;border-image:initial;border-width:0;" title="WARNING: The command completed successfully but no settings of 'demolab.local/Users/Rob Gallalee' have been modified." src="http://mikecrowley.files.wordpress.com/2012/05/image_thumb.png?w=600&#038;h=111" alt="WARNING: The command completed successfully but no settings of 'demolab.local/Users/Rob Gallalee' have been modified." width="600" height="111" border="0" /></a></p>
<p>After a little bit of inspiration from a <a href="http://theessentialexchange.com/blogs/michael/archive/2009/07/07/removing-old-emailaddresses-proxyaddresses-in-exchange-2007.aspx">script</a> written by Michael B Smith, I came up with the below:</p>
<pre class="brush: powershell; title: ; notranslate">

$MailboxList = Get-Mailbox  -ResultSize unlimited

$MailboxList | % {

$LoweredList = @()
$RenamedList = @()

foreach ($Address in $_.EmailAddresses){
if ($Address.prefixstring -eq &quot;SMTP&quot;){
$RenamedList += $Address.smtpaddress + &quot;TempRename&quot;
$LoweredList += $Address.smtpaddress.ToLower()
}
}
Set-mailbox $_ -emailaddresses $RenamedList -EmailAddressPolicyEnabled $false
Set-mailbox $_ -emailaddresses $LoweredList

#Without this line the &quot;Reply To&quot; Address could be lost on recipients with more than one proxy address:
Set-mailbox $_ -PrimarySmtpAddress $_.PrimarySmtpAddress
}
</pre>
<p>This script works as follows:</p>
<ol>
<li>Puts all mailboxes into the $MailboxList variable.  If you don’t want <em>all</em> mailboxes,  edit the Get-Mailbox cmdlet as you see fit.</li>
<li>Filters out X400 and other non-SMTP addresses.</li>
<li>Creates an array called $RenamedList which stores each proxy address with &#8220;TempRename&#8221; appended to it (e.g. Rgallalee@demolab.localTempRename).</li>
<li>Creates another array ($LoweredList) and use the &#8220;ToLower&#8221; method on each proxy address.</li>
<li>Sets the proxy address for the user to the value of $RenamedList and then to $LoweredList.
<ol>
<li>This is how we get around the case case insensitivity &#8211; name it to something else and then name it back.</li>
</ol>
</li>
<li>Step 4 and 5 don&#8217;t preserve the &#8220;Primary&#8221; / &#8220;Reply-To&#8221; address, so we set it back manually with the last line.</li>
</ol>
<p>Note: This script turns off the email address policy for each user.</p>
<p>As always, feedback is welcome.</p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/active-directory/'>Active Directory</a>, <a href='http://mikecrowley.wordpress.com/category/it-information-technology/exchange-server/'>Exchange Server</a>, <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/activedirectory/'>ActiveDirectory</a>, <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://mikecrowley.wordpress.com/tag/powershell/'>Powershell</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/1003/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/1003/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=1003&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/05/14/converting-smtp-proxy-addresses-to-lowercase/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/05/image_thumb.png" medium="image">
			<media:title type="html">WARNING: The command completed successfully but no settings of &#039;demolab.local/Users/Rob Gallalee&#039; have been modified.</media:title>
		</media:content>
	</item>
		<item>
		<title>100,000 and Counting&#8230;</title>
		<link>http://mikecrowley.wordpress.com/2012/05/01/100000-and-counting/</link>
		<comments>http://mikecrowley.wordpress.com/2012/05/01/100000-and-counting/#comments</comments>
		<pubDate>Tue, 01 May 2012 14:34:45 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=983</guid>
		<description><![CDATA[I am proud to report that today this blog has reached 100,000 views! Maintaining this site has been very rewarding for me, and I’m happy to have been able to contribute to the technical community, which has served me very well since I entered the infotech industry ten years ago. WordPress.com provides statistics on how [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=983&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:right;padding-top:0;border-width:0;" border="0" align="right" src="http://www.paulsmith.org/wp-content/uploads/2010/05/100000miles.jpg" width="184" height="138" />I am proud to report that today this blog has reached 100,000 views! Maintaining this site has been very rewarding for me, and I’m happy to have been able to contribute to the technical community, which has served me very well since I entered the infotech industry ten years ago.</p>
<p>WordPress.com provides statistics on how every blog is used.&#160; Here are some facts about mine:</p>
<ul>
<li>My <a href="http://mikecrowley.wordpress.com/2011/02/17/how-to-set-windows-7s-login-wallpaper-with-group-policies/">post</a> on setting logon wallpaper for Windows 7 has been my most popular </li>
<li>Google’s search results have sent most of my readers (by far). TechNet forums comes in 2<sup>nd</sup> </li>
<li>Google has sent people to this site at a rate 34x to that of Bing </li>
<li>Only 9 viewers have used ask.com to find me (GASP!) </li>
<li>The anti-spam feature for comments is very good, though the comment spam I receive has been surprisingly complementary; I’m half way inclined to let it through. <img style="border-style:none;" class="wlEmoticon wlEmoticon-winkingsmile" alt="Winking smile" src="http://mikecrowley.files.wordpress.com/2012/05/wlemoticon-winkingsmile.png?w=595" /> </li>
</ul>
<p>Thanks to all my visitors.&#160; Please share my site with a friend, visit the sites that pay my bills (Mike’s Links – top right), and if you have any topic suggestions or feedback in general, please <a href="http://mikecrowley.wordpress.com/about/">contact me</a>!</p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/personal/'>Personal</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/personal/'>Personal</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/983/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/983/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=983&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/05/01/100000-and-counting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://www.paulsmith.org/wp-content/uploads/2010/05/100000miles.jpg" medium="image" />

		<media:content url="http://mikecrowley.files.wordpress.com/2012/05/wlemoticon-winkingsmile.png" medium="image">
			<media:title type="html">Winking smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Combining PowerShell Cmdlet Results</title>
		<link>http://mikecrowley.wordpress.com/2012/04/17/combining-powershell-cmdlet-results/</link>
		<comments>http://mikecrowley.wordpress.com/2012/04/17/combining-powershell-cmdlet-results/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 23:12:45 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[ActiveDirectory]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=969</guid>
		<description><![CDATA[In my last post I used used New-Object to create an desirable output when the “Get-Mailbox” cmdlet didn’t meet my needs.  If your eyes glazed over trying to read the script, let me make it a bit simpler by focusing on a straight forward example. Say you need to create a list of user’s mailbox [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=969&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In my last <a href="http://mikecrowley.wordpress.com/2012/04/16/exchange-proxy-address-alias-report/">post</a> I used used <a href="http://blogs.msdn.com/b/powershell/archive/2009/12/05/new-object-psobject-property-hashtable.aspx" target="_blank">New-Object</a> to create an desirable output when the “Get-Mailbox” cmdlet didn’t meet my needs.  If your eyes glazed over trying to read the script, let me make it a bit simpler by focusing on a straight forward example.</p>
<p>Say you need to create a list of user’s mailbox size with their email address.  This sounds like a simple request, but what you’d soon find is that mailbox sizes are returned with the Get-MailboxStatistics cmdlet and the email address is not.  For that, you need to use another cmdlet, such as Get-Mailbox.</p>
<p>With the New-Object cmdlet, we are able to make a custom output that contains data from essentially wherever we want.</p>
<p>See this example:</p>
<pre class="brush: powershell; title: ; notranslate">
$MyObject = New-Object PSObject -Property @{
EmailAddress = $null
MailboxSize = $null
}
</pre>
<p>In this example, I have created a new object with 2 fields, and saved it as the $MyObject variable.</p>
<p>For now, we’ve set the data to null, as shown below:</p>
<p><a href="http://mikecrowley.files.wordpress.com/2012/04/image4.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;margin-left:auto;margin-right:auto;padding-top:0;border-style:initial;border-color:initial;border-image:initial;border-width:0;" title="$MyObject" src="http://mikecrowley.files.wordpress.com/2012/04/image_thumb4.png?w=600&#038;h=106" alt="$MyObject" width="600" height="106" border="0" /></a></p>
<p>The next step is to populate each of those fields.  We can write to them one at a time with lines like this:</p>
<pre class="brush: powershell; title: ; notranslate">
$MyObject.EmailAddress = (Get-Mailbox mcrowley).PrimarySmtpAddress
$MyObject.MailboxSize = (Get-MailboxStatistics mcrowley).TotalItemSize
</pre>
<p>Note: The variable we want to populate is on the left, with what we want to put in it on the right.</p>
<p>To confirm our results, we can simply type the variable name at the prompt:</p>
<p><a href="http://mikecrowley.files.wordpress.com/2012/04/image5.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-style:initial;border-color:initial;border-image:initial;border-width:0;" title="$MyObject with data" src="http://mikecrowley.files.wordpress.com/2012/04/image_thumb5.png?w=600&#038;h=64" alt="$MyObject with data" width="600" height="64" border="0" /></a></p>
<p>Pretty cool, huh?</p>
<p>Ok, so now about that list.  My example only shows the data for mcrowley, and you probably need more than just 1 item in your report, right?</p>
<p>For this, you need to use the foreach loop.  You can read more about <a href="http://www.computerperformance.co.uk/powershell/powershell_loops.htm">foreach</a> here, but the actual code for our list is as follows:</p>
<p><em>(I am actually going to skip the $null attribute step here)</em></p>
<pre class="brush: powershell; title: ; notranslate">
$UserList = Get-mailbox -Resultsize unlimited
$MasterList = @()
foreach ($User in $UserList) {
$MyObject = New-Object PSObject -Property @{
EmailAddress = (Get-Mailbox $User).PrimarySmtpAddress
MailboxSize = (Get-MailboxStatistics $User).TotalItemSize
}
$MasterList += $MyObject
}
$MasterList
</pre>
<p><a href="http://mikecrowley.files.wordpress.com/2012/04/image6.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-style:initial;border-color:initial;border-image:initial;border-width:0;" title="$MasterList with data" src="http://mikecrowley.files.wordpress.com/2012/04/image_thumb6.png?w=600&#038;h=71" alt="$MasterList with data" width="600" height="71" border="0" /></a></p>
<p>Finally, if you wanted to make this run faster, we really don&#8217;t need to run &#8220;get-mailbox&#8221; twice.  For better results, replace the line:</p>
<pre class="brush: powershell; title: ; notranslate">
EmailAddress = (Get-Mailbox $User).PrimarySmtpAddress
</pre>
<p>With this one:</p>
<pre class="brush: powershell; title: ; notranslate">
EmailAddress = $User.PrimarySmtpAddress
</pre>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/active-directory/'>Active Directory</a>, <a href='http://mikecrowley.wordpress.com/category/it-information-technology/exchange-server/'>Exchange Server</a>, <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/activedirectory/'>ActiveDirectory</a>, <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a>, <a href='http://mikecrowley.wordpress.com/tag/powershell/'>Powershell</a>, <a href='http://mikecrowley.wordpress.com/tag/windows/'>Windows</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/969/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=969&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/04/17/combining-powershell-cmdlet-results/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/04/image_thumb4.png" medium="image">
			<media:title type="html">$MyObject</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/04/image_thumb5.png" medium="image">
			<media:title type="html">$MyObject with data</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/04/image_thumb6.png" medium="image">
			<media:title type="html">$MasterList with data</media:title>
		</media:content>
	</item>
		<item>
		<title>Exchange Proxy Address (alias) Report</title>
		<link>http://mikecrowley.wordpress.com/2012/04/16/exchange-proxy-address-alias-report/</link>
		<comments>http://mikecrowley.wordpress.com/2012/04/16/exchange-proxy-address-alias-report/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 17:47:20 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=859</guid>
		<description><![CDATA[### UPDATE (June 1 2012): This script now runs faster and puts the “Primary” SMTP address first.  For example: ### Exchange Server stores user’s alternate email addresses as a multi-valued attribute within Active Directory.  For example, if my colleague Jorge has jdiaz@demolab.local as well as diazj@demolab.local, his proxyAddresses attribute would look like this: Notice, the [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=859&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><span style="color:#ff0000;"><strong>###</strong></span></p>
<p><span style="color:#ff0000;"><strong>UPDATE (June 1 2012): This script now runs faster and puts the “Primary” SMTP address first.  For example:</strong></span></p>
<p><a href="https://mikecrowley.files.wordpress.com/2012/04/capture.jpg"><img class="size-medium wp-image-1021" title="Capture" src="https://mikecrowley.files.wordpress.com/2012/04/capture.jpg?w=300&#038;h=80" alt="Updated Output" width="300" height="80" /></a></p>
<p><span style="color:#ff0000;"><strong>###</strong></span></p>
<p><span style="color:#ff0000;"><strong></strong><span style="color:#000000;">Exchange Server stores user’s alternate email addresses as a multi-valued attribute within Active Directory.  For example, if my colleague Jorge has jdiaz@demolab.local as well as diazj@demolab.local, his proxyAddresses attribute would look like this:</span></span></p>
<p><a href="http://mikecrowley.files.wordpress.com/2012/04/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="ADUC - ProxyAddresses" src="http://mikecrowley.files.wordpress.com/2012/04/image_thumb.png?w=407&#038;h=373" alt="ADUC - ProxyAddresses" width="407" height="373" border="0" /></a></p>
<p>Notice, the capital SMTP vs. the lowercase smtp.  There can be only one uppercase SMTP, and this represents the primary, or “reply to” address.</p>
<p>While, it’s very easy to view someone’s proxy addresses (often called aliases, but don’t confuse it with the “alias” attribute) within the Exchange Management Console, it can be tough to work with in the Exchange Management Shell (PowerShell) due to the data being stored as a  “Multi-Valued” attribute.  The usual “Get-Mailbox” output not only shows all addresses as a single item, but in the case “mcrowley” below, we can see the shell truncates:</p>
<p><a href="http://mikecrowley.files.wordpress.com/2012/04/image1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="get-mailbox mcrowley | select emailaddresses" src="http://mikecrowley.files.wordpress.com/2012/04/image_thumb1.png?w=600&#038;h=49" alt="get-mailbox mcrowley | select emailaddresses" width="600" height="49" border="0" /></a></p>
<p>While there are ways (<a href="http://social.technet.microsoft.com/Forums/ta/exchange2010/thread/ef38e6d7-5d20-4509-b9b2-b6e768c9bf13">example1</a>, <a href="http://exchangeserverpro.com/how-to-prevent-truncation-of-long-output-in-exchange-management-shell">example2</a>) to manipulate this output on the screen, I recently needed to create a complete list of all users possessing one or more secondary email address, and document what those addresses were.</p>
<p>On the surface, this sounds simple.  We want a list of users who have more than 1 proxy address.  At first, I thought of something like this:</p>
<p><em>Get-Mailbox -Filter {emailaddresses -gt 1} | Select EmailAddresses</em></p>
<p><a href="http://mikecrowley.files.wordpress.com/2012/04/image2.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Get-Mailbox -Filter {emailaddresses -gt 1} | Select EmailAddresses" src="http://mikecrowley.files.wordpress.com/2012/04/image_thumb2.png?w=600&#038;h=93" alt="Get-Mailbox -Filter {emailaddresses -gt 1} | Select EmailAddresses" width="600" height="93" border="0" /></a></p>
<p>But we can see this doesn’t actually capture the correct users.  In the above example, LiveUser1 only has a single proxy address, but it was returned anyway.  This is because the result is actually converted to a number, and the “-gt” or “greater than” operation is done on this number; not what we want.</p>
<p>To get the user collection you want, we actually need to break-out the data within this attribute, and evaluate it in a somewhat CPU intensive process.  I have written a script that helps here, by doing the following things:</p>
<ul>
<li>Grabs all mailboxes and counts the number of proxy addresses for each one.  I have filtered out X400, and other non-smtp addresses.</li>
<li>If more than one proxy is found, it puts the user and it’s proxy addresses in a “nice” CSV file called c:\TooManyProxies.csv.</li>
<li>Displays a similar output to the screen.</li>
<li>Displays the total number of users found.</li>
</ul>
<p>Here is a sample output, shown in excel (with some bolding on the headers):</p>
<p><a href="http://mikecrowley.files.wordpress.com/2012/04/image3.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Sample TooManyProxies.csv" src="http://mikecrowley.files.wordpress.com/2012/04/image_thumb3.png?w=600&#038;h=180" alt="Sample TooManyProxies.csv" width="600" height="180" border="0" /></a></p>
<p>The guts of this script might help with this exact scenario, or really, anywhere you want to break out and evaluate multi-valued attributes.  Feel free to use it and adjust as you see fit!</p>
<p>Some known limitations:</p>
<ul>
<li>I’m no PowerShell master, so this might not be as efficient as it could be.</li>
<li>If a user has more than 10 proxy addresses, you’ll need to adjust the script and add more rows.</li>
<li>There isn’t a lot of error checking here, but I’ve used it in 2 different environments and it ran as expected.</li>
<li><a href="http://mikecrowley.files.wordpress.com/2012/04/clip_image001.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:right;padding-top:0;border-width:0;" title="-replace &quot;smtp:&quot;" src="http://mikecrowley.files.wordpress.com/2012/04/clip_image001_thumb.png?w=244&#038;h=119" alt="-replace &quot;smtp:&quot;" width="244" height="119" align="right" border="0" /></a>As shown below, this script doesn’t differentiate “SMTP” from “smtp”.  The addresses are listed in order stored; not necessarily relevant to us.  If you want this information shown, remove this portion from the script:</li>
</ul>
<p><em>If you ONLY want a csv of everyone&#8217;s proxy address, change &#8220;-gt 1&#8243; to &#8220;-gt 0&#8243;</em></p>
<p>Finally, the script itself:</p>
<pre class="brush: powershell; title: ; notranslate">
#ProxyAddressCount-v3.3
# by Mike Crowley http://mikecrowley.us

cls

Write-Host &quot;Getting and evaluating users. Please wait; this could take a while...&quot; -ForegroundColor Cyan

#Getting a list of mailboxes to work with
$UserList = Get-mailbox -Resultsize unlimited

$TooManyProxies = @()

foreach ($User in $UserList) {
#get a list of SMTP and smtp proxy addresses for each User
[array]$SmtpProxyAddresses = $User.emailaddresses | Where {$_.prefixstring -like 'smtp'} | sort IsPrimaryAddress -Descending

#This section creates a lot of errors since many users don't have 3,4,5 etc proxy addresses. Here we turn error output off.
$ErrorActionPreference = 'SilentlyContinue'

#Create a new placeholder object so that we don't store the x400/x500 proxy addresses
$UserAndSmtpObject = New-Object PSObject -Property @{
Name = $user.name
PrimarySmtpAddresses1 =$SmtpProxyAddresses[0] -replace &quot;smtp:&quot;
SmtpAddresses2 =$SmtpProxyAddresses[1] -replace &quot;smtp:&quot;
SmtpAddresses3 =$SmtpProxyAddresses[2] -replace &quot;smtp:&quot;
SmtpAddresses4 =$SmtpProxyAddresses[3] -replace &quot;smtp:&quot;
SmtpAddresses5 =$SmtpProxyAddresses[4] -replace &quot;smtp:&quot;
SmtpAddresses6 =$SmtpProxyAddresses[5] -replace &quot;smtp:&quot;
SmtpAddresses7 =$SmtpProxyAddresses[6] -replace &quot;smtp:&quot;
SmtpAddresses8 =$SmtpProxyAddresses[7] -replace &quot;smtp:&quot;
SmtpAddresses9 =$SmtpProxyAddresses[8] -replace &quot;smtp:&quot;
SmtpAddresses10 =$SmtpProxyAddresses[9] -replace &quot;smtp:&quot;
}

#Turning error reporting back on
$ErrorActionPreference = 'Continue'

#Count the number of proxy addresses for each User
$SmtpProxyAddressCount = ($SmtpProxyAddresses).count

#Add Users with more than 1 proxy address to the $TooManyProxies variable
if ($SmtpProxyAddressCount -gt 1) {
$TooManyProxies += $UserAndSmtpObject
}
}

Write-Host &quot;&quot;
$TooManyProxies | select name, PrimarySmtpAddresses1, SmtpAddresses2, SmtpAddresses3, SmtpAddresses4, SmtpAddresses5, SmtpAddresses6, SmtpAddresses7, SmtpAddresses8, SmtpAddresses9, SmtpAddresses10 | Export-CSV c:\TooManyProxies.csv -notype
$TooManyProxies | select name, PrimarySmtpAddresses1, SmtpAddresses2, SmtpAddresses3, SmtpAddresses4, SmtpAddresses5, SmtpAddresses6, SmtpAddresses7, SmtpAddresses8, SmtpAddresses9, SmtpAddresses10
Write-Host &quot;&quot;

#Display a count
Write-Host &quot;You had&quot; ($TooManyProxies).count &quot;Users containing two or more proxy SMTP addresses.&quot; -ForegroundColor Cyan

Write-Host &quot;&quot;
Write-Host &quot;&quot;
Write-Host &quot;Your result file is here 'c:\TooManyProxies.csv'&quot; -ForegroundColor Cyan
</pre>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/exchange-server/'>Exchange Server</a>, <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a>, <a href='http://mikecrowley.wordpress.com/tag/powershell/'>Powershell</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/859/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/859/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=859&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/04/16/exchange-proxy-address-alias-report/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="https://mikecrowley.files.wordpress.com/2012/04/capture.jpg?w=300" medium="image">
			<media:title type="html">Capture</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/04/image_thumb.png" medium="image">
			<media:title type="html">ADUC - ProxyAddresses</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/04/image_thumb1.png" medium="image">
			<media:title type="html">get-mailbox mcrowley &#124; select emailaddresses</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/04/image_thumb2.png" medium="image">
			<media:title type="html">Get-Mailbox -Filter {emailaddresses -gt 1} &#124; Select EmailAddresses</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/04/image_thumb3.png" medium="image">
			<media:title type="html">Sample TooManyProxies.csv</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/04/clip_image001_thumb.png" medium="image">
			<media:title type="html">-replace &#34;smtp:&#34;</media:title>
		</media:content>
	</item>
		<item>
		<title>Cloud Connections Session Slides</title>
		<link>http://mikecrowley.wordpress.com/2012/03/29/cloud-connections-session-slides/</link>
		<comments>http://mikecrowley.wordpress.com/2012/03/29/cloud-connections-session-slides/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 22:04:17 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Office365]]></category>
		<category><![CDATA[FOPE]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=844</guid>
		<description><![CDATA[Thanks to those who attended my sessions at this weeks Cloud Connections conference.&#160; If you missed it, or would like to download the slides, I’ve made them available here. &#160; &#160; &#160; If you are looking for slides from other speakers, please see here:&#160; http://www.devconnections.com/updates/LasVegas_Spring12/Cloud Filed under: Office365 Tagged: FOPE, Office365<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=844&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Thanks to those who attended my sessions at this weeks Cloud Connections conference.&#160; If you missed it, or would like to download the slides, I’ve made them available here.</p>
<p>&#160;</p>
<p><a href="http://mikecrowley.files.wordpress.com/2012/03/crowley_cloudconnections_ceo206_o365pilot.pdf"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="Piloting Exchange Online" border="0" alt="Piloting Exchange Online" src="http://mikecrowley.files.wordpress.com/2012/03/image3.png?w=391&#038;h=246" width="391" height="246" /></a></p>
<p>&#160;</p>
<p> <a href="http://mikecrowley.files.wordpress.com/2012/03/crowley_cloudconnections_ceo307_fope.pdf"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;padding-top:0;" title="Forefront Online Protection for Exchange" border="0" alt="Forefront Online Protection for Exchange" src="http://mikecrowley.files.wordpress.com/2012/03/image32.png?w=391&#038;h=246" width="391" height="246" /></a>
<p>&#160;</p>
<p>If you are looking for slides from other speakers, please see here:&#160; </p>
<p><a href="http://www.devconnections.com/updates/LasVegas_Spring12/Cloud">http://www.devconnections.com/updates/LasVegas_Spring12/Cloud</a></p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/fope/'>FOPE</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/844/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=844&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/03/29/cloud-connections-session-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">Piloting Exchange Online</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/03/image32.png" medium="image">
			<media:title type="html">Forefront Online Protection for Exchange</media:title>
		</media:content>
	</item>
		<item>
		<title>Ads are Annoying</title>
		<link>http://mikecrowley.wordpress.com/2012/03/20/ads-are-annoying/</link>
		<comments>http://mikecrowley.wordpress.com/2012/03/20/ads-are-annoying/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 23:55:43 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=828</guid>
		<description><![CDATA[Thanks to all who read my blog!&#160; Today I purchased the “No Ads” upgrade, and thus made the internet a cleaner place.&#160; Hope you all enjoy. &#160; Filed under: Personal Tagged: Personal<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=828&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Thanks to all who read my blog!&#160; Today I purchased the “No Ads” upgrade, and thus made the internet a cleaner place.&#160; Hope you all enjoy.</p>
<p>&#160;</p>
<p><img style="display:block;float:none;margin-left:auto;margin-right:auto;" src="http://wottoncool.files.wordpress.com/2008/05/hkg-hong-kong-advertising.jpg?w=392&#038;h=266" width="392" height="266" /></p>
<p><img style="display:block;float:none;margin-left:auto;margin-right:auto;" src="https://encrypted-tbn2.google.com/images?q=tbn:ANd9GcSRpCL6jD5bdivXG_RjMRWKH2f70XL4yjtqWUT2oaeRHckk18MD" width="130" height="127" /></p>
<p><img style="display:block;float:none;margin-left:auto;margin-right:auto;" src="http://mikecrowley.files.wordpress.com/2012/03/apeacefulroad.jpg?w=460&#038;h=345" width="460" height="345" /></p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/personal/'>Personal</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/personal/'>Personal</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/828/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/828/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=828&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/03/20/ads-are-annoying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://wottoncool.files.wordpress.com/2008/05/hkg-hong-kong-advertising.jpg" medium="image" />

		<media:content url="https://encrypted-tbn2.google.com/images?q=tbn:ANd9GcSRpCL6jD5bdivXG_RjMRWKH2f70XL4yjtqWUT2oaeRHckk18MD" medium="image" />

		<media:content url="http://mikecrowley.files.wordpress.com/2012/03/apeacefulroad.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>Windows Server &#8220;8&#8221; Beta Hyper-V Component Architecture Poster</title>
		<link>http://mikecrowley.wordpress.com/2012/03/20/windows-server-8-beta-hyper-v-component-architecture-poster/</link>
		<comments>http://mikecrowley.wordpress.com/2012/03/20/windows-server-8-beta-hyper-v-component-architecture-poster/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 20:12:36 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=823</guid>
		<description><![CDATA[Late last week, Microsoft released another high-quality poster.&#160; This time for Hyper-V in Windows 8 (beta). You can download this poster here. If you’re interested in learning more on Hyper-V in Windows 8, click some of the links below.&#160; This update to Hyper-V is my favorite part of Windows Server 8! Reading Understand and Troubleshoot [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=823&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Late last week, Microsoft released another high-quality poster.&#160; This time for Hyper-V in Windows 8 (beta).</p>
<p><a href="http://www.microsoft.com/download/en/details.aspx?id=29189"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Hyper-V Component Architecture Poster" border="0" alt="Hyper-V Component Architecture Poster" src="http://mikecrowley.files.wordpress.com/2012/03/image2.png?w=600&#038;h=337" width="600" height="337" /></a></p>
<p>You can download this poster <a href="http://www.microsoft.com/download/en/details.aspx?id=29189" target="_blank">here</a>.</p>
<p>If you’re interested in learning more on Hyper-V in Windows 8, click some of the links below.&#160; This update to Hyper-V is my favorite part of Windows Server 8!</p>
<p>Reading</p>
<ul>
<li><a href="http://www.microsoft.com/download/en/details.aspx?id=29016" target="_blank">Understand and Troubleshoot Hyper-V Replica in Windows Server &quot;8&quot; Beta</a> </li>
<li><a href="http://blogs.msdn.com/b/virtual_pc_guy/archive/2012/03/14/how-does-storage-migration-actually-work.aspx" target="_blank">How does Storage Migration actually work?</a> </li>
</ul>
<p>Videos</p>
<ul>
<li><a href="http://technet.microsoft.com/en-us/edge/Video/hh868077" target="_blank">Windows 8 Hyper-V: Availability Video</a> </li>
<li><a href="http://technet.microsoft.com/en-us/edge/Video/hh867796" target="_blank">Windows 8 Hyper-V: Scalability Video</a> </li>
<li><a href="http://technet.microsoft.com/en-us/edge/Video/hh874996" target="_blank">Hyper-V Cmdlets in Windows Server 8 Demo Video</a> </li>
<li><a href="http://technet.microsoft.com/en-us/edge/Video/hh867541" target="_blank">Windows Server 8 Extensible Switch in Hyper-V interview with Bob Combs</a> </li>
</ul>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/windows-server/'>Windows Server</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/hyper-v/'>Hyper-V</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/823/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/823/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=823&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/03/20/windows-server-8-beta-hyper-v-component-architecture-poster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">Hyper-V Component Architecture Poster</media:title>
		</media:content>
	</item>
		<item>
		<title>Security Flaw in Remote Desktop</title>
		<link>http://mikecrowley.wordpress.com/2012/03/13/security-flaw-in-remote-desktop/</link>
		<comments>http://mikecrowley.wordpress.com/2012/03/13/security-flaw-in-remote-desktop/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 01:10:56 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=818</guid>
		<description><![CDATA[3/16/2012 UPDATE: Exploit code published for RDP worm hole &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- I don’t always post on Windows security updates, but when I do, it’s a Dos Equis near to my heart!&#160; Do you use Remote Desktop?&#160; Of course you do.&#160; That’s why you need to install this update immediately: MS12-020: Vulnerabilities in Remote Desktop could allow [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=818&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><font color="#ff0000">3/16/2012 UPDATE:</font></p>
<p><a href="http://www.zdnet.com/blog/security/exploit-code-published-for-rdp-worm-hole-does-microsoft-have-a-leak/10860" target="_blank">Exploit code published for RDP worm hole</a></p>
<p><font color="#ff0000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</font></p>
<p>I don’t always post on Windows security updates, but when I do, it’s <strike>a Dos Equis</strike> near to my heart!&#160; Do you use Remote Desktop?&#160; Of course you do.&#160; That’s why you need to install this update immediately:</p>
<p><a href="http://support.microsoft.com/kb/2671387" target="_blank">MS12-020: Vulnerabilities in Remote Desktop could allow remote code execution</a></p>
<p>This is important for anyone running just about any version of Windows, but especially if you’ve got any machine exposing Remote Desktop directly to the internet (such as a Terminal Server).&#160; Fortunately there is a mitigation for those who just cannot patch tonight: enable <a href="http://en.wikipedia.org/wiki/Network_Level_Authentication" target="_blank">NLA</a> for your Remote Desktop connections.<a href="http://mikecrowley.files.wordpress.com/2012/03/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="RDP - Network Level Authentication" border="0" alt="RDP - Network Level Authentication" src="http://mikecrowley.files.wordpress.com/2012/03/image_thumb.png?w=287&#038;h=160" width="287" height="160" /></a></p>
<p>Read more <a href="http://blogs.technet.com/b/msrc/archive/2012/03/13/strength-flexibility-and-the-march-2012-security-bulletins.aspx" target="_blank">here</a>.</p>
<p>Hop to it!&#160; Microsoft says not to wait for a normal patch-cycle on this one…</p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/windows-server/'>Windows Server</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://mikecrowley.wordpress.com/tag/security/'>Security</a>, <a href='http://mikecrowley.wordpress.com/tag/windows/'>Windows</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/818/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/818/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=818&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/03/13/security-flaw-in-remote-desktop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/03/image_thumb.png" medium="image">
			<media:title type="html">RDP - Network Level Authentication</media:title>
		</media:content>
	</item>
		<item>
		<title>Dealing with PST Files</title>
		<link>http://mikecrowley.wordpress.com/2012/01/30/dealing-with-pst-files/</link>
		<comments>http://mikecrowley.wordpress.com/2012/01/30/dealing-with-pst-files/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 02:43:22 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=813</guid>
		<description><![CDATA[Chances are, if you read my site, you also read the Exchange team blog.&#160; This means you’ve seen the PST Capture Tool!&#160; I’ve had a chance to work with this tool for a little while now and have found it to be a delight! “PSTs are bad M’kay?“ This is a line we’ve all recited [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=813&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Chances are, if you read my site, you also read the Exchange team <a href="http://blogs.technet.com/b/exchange/">blog</a>.&#160; This means you’ve seen the <a href="http://blogs.technet.com/b/exchange/archive/2012/01/30/pst-time-to-walk-the-plank.aspx">PST Capture Tool</a>!&#160; I’ve had a chance to work with this tool for a little while now and have found it to be a delight!<a href="http://mikecrowley.files.wordpress.com/2012/01/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:right;padding-top:0;border-width:0;" title="PST File" border="0" alt="PST File" align="right" src="http://mikecrowley.files.wordpress.com/2012/01/image_thumb.png?w=91&#038;h=74" width="91" height="74" /></a></p>
<p><strong><em>“PSTs are bad M’kay?“</em></strong></p>
<p>This is a line we’ve all recited a time or two (ok maybe not exactly that line), but do we even know why?&#160; Are we just parrots, or do we actually have a reason for condemning this hugely prolific file format? </p>
<p>Let’s start by acknowledging that PST files aren’t <em>all </em>bad.&#160; M’kay?&#160; If you run Outlook at home, or if you use IMAP/POP-based accounts (Gmail, Hotmail, etc) at work, using a PST file can actually be a good idea.&#160; While it <em>is</em> possible to direct internet mail to the Exchange mailbox, this would create several problems:</p>
<ul>
<li>Wasting expensive Exchange disk space</li>
<li>Potential violation of company policies</li>
<li>Internet mail is now subject to corporate retention (and discovery!) policies</li>
<li>Makes moving to a job more painful</li>
<li>etc. </li>
<p>   <a href="http://www.microsoft.com/downloads/info.aspx?na=41&amp;srcfamilyid=64b837b6-0aa0-4c07-bc34-bec3990a7956&amp;srcdisplaylang=en&amp;u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2fC%2f3%2fF%2fC3F8BD05-1743-4D7D-849C-C352B0F61835%2fOffice2010GroupPolicyAndOCTSettings_Reference.xls"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;float:right;border-top:0;border-right:0;padding-top:0;" title="AutoArchive Group Policy Settings" border="0" alt="AutoArchive Group Policy Settings" align="right" src="http://mikecrowley.files.wordpress.com/2012/01/image1.png?w=240&#038;h=117" width="240" height="117" /></a></ul>
<p>I’d even go so far as to say <em>you might want to</em> use PST files for archiving corporate email!&#160; If you run a small shop &#8211; or a big one that isn’t subject to any retention policies.&#160; A <a href="http://www.microsoft.com/downloads/info.aspx?na=41&amp;srcfamilyid=64b837b6-0aa0-4c07-bc34-bec3990a7956&amp;srcdisplaylang=en&amp;u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2fC%2f3%2fF%2fC3F8BD05-1743-4D7D-849C-C352B0F61835%2fOffice2010GroupPolicyAndOCTSettings_Reference.xls">group policy</a> configuring AutoArchive (and a note to your users) might be a good way to implement spring cleaning in your Exchange data stores.&#160; </p>
<p>See, PST files actually <em>can </em>serve a purpose!</p>
<p>Then there is the other side of the coin:</p>
<p>In most situations, PST files represent unmanaged storage of email.&#160; For someone who is charged with administering an email environment, this means we aren&#8217;t able to do our job.&#160; If users begin to rely on something that we aren’t taking care of; what happens when it breaks?&#160; We’ve all had the uncomfortable task of telling someone we can’t get their data back at least once in our careers.&#160; It doesn’t make for fun times.</p>
<p>More important than our comfort; many organizations are subject to regulations which <em>require</em> them to turn email data over to the courts upon request.&#160; A judge wont want to hear your sob story about how PST files aren’t searchable, and how you’re going to have to look across the whole network by hand to find that email thread.</p>
<p>I recently completed an Exchange 2010 deployment for a government organization that <em>was</em> subject to such legislation.&#160; Once we activated the <a href="http://technet.microsoft.com/en-us/library/dd979795.aspx">Personal Archive</a> for their users, they decided to put the kibosh on PST files.&#160; To enforce this, we laid out a three phased approach:</p>
<ol>
<li>Prevent the users from making new PST files</li>
<li>Prevent the users from adding content to existing PST files</li>
<li>Use the abovementioned PST Capture Tool to import PSTs as necessary</li>
</ol>
<p>The first two steps were quite simple to accomplish.&#160; Outlook reads a registry value called <strong>PSTDisableGrow </strong>(<strong>REG_DWORD</strong>).&#160; We deployed a <a href="http://technet.microsoft.com/en-us/library/cc771589.aspx">GPO</a> to implement this as follows:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="145">
<p>Outlook 2003</p>
</td>
<td valign="top" width="348">
<p>HKCU\Software\Microsoft\Office\11.0\Outlook\PST\</p>
</td>
</tr>
<tr>
<td valign="top" width="145">
<p>Outlook 2007</p>
</td>
<td valign="top" width="348">
<p>HKCU\Software\Microsoft\Office\12.0\Outlook\PST\</p>
</td>
</tr>
<tr>
<td valign="top" width="145">
<p>Outlook 2010</p>
</td>
<td valign="top" width="348">
<p>HKCU\Software\Microsoft\Office\14.0\Outlook\PST\</p>
</td>
</tr>
</tbody>
</table>
<p>Set PSTDisableGrow to “<strong>1</strong>” (without the quotes).&#160; This will allow users to mount PST files in Outlook, but it will not allow any new content to be placed within.&#160; Don’t worry about overkill here.&#160; I used a single GPO for all 3 settings.&#160; Outlook version X doesn’t care about extra registry settings in Outlook Y’s key.</p>
<p>PSTDisableGrow has some siblings; read more about DisablePST, DisableCrossAccountCopy and DisableCopyToFileSystem <a href="http://technet.microsoft.com/en-us/library/ff800883.aspx">here</a>.</p>
<p>&#160;</p>
<p>That’s all for now, have a great week!</p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/exchange-server/'>Exchange Server</a>, <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/813/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/813/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=813&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2012/01/30/dealing-with-pst-files/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/01/image_thumb.png" medium="image">
			<media:title type="html">PST File</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2012/01/image1.png" medium="image">
			<media:title type="html">AutoArchive Group Policy Settings</media:title>
		</media:content>
	</item>
		<item>
		<title>Exchange 2010 Service Pack 2</title>
		<link>http://mikecrowley.wordpress.com/2011/12/05/exchange-2010-service-pack-2/</link>
		<comments>http://mikecrowley.wordpress.com/2011/12/05/exchange-2010-service-pack-2/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 15:35:34 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=791</guid>
		<description><![CDATA[Today, Microsoft released SP2 for Exchange 2010.  You can download the RTM here. As previously announced, the major features for this update focus on the following areas: A “Hybrid Configuration Wizard” (HCW) – which is used to guide administrators through the Office 365 Rich Coexistence setup.  BTW, you’ll notice Microsoft actually no longer uses the [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=791&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today, Microsoft released SP2 for Exchange 2010.  <a href="http://mikecrowley.files.wordpress.com/2011/12/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:right;padding-top:0;border-width:0;" title="Version 14.2 (Build 247.5)" src="http://mikecrowley.files.wordpress.com/2011/12/image_thumb.png?w=232&#038;h=53" alt="Version 14.2 (Build 247.5)" width="232" height="53" align="right" border="0" /></a></p>
<p>You can download the RTM <a href="http://www.microsoft.com/download/en/details.aspx?id=28190&amp;WT.mc_id=rss_alldownloads_all">here</a>.</p>
<p>As <a href="http://blogs.technet.com/b/exchange/archive/2011/05/17/announcing-exchange-2010-service-pack-2.aspx">previously announced</a>, the major features for this update focus on the following areas:</p>
<ul>
<li>A “Hybrid Configuration Wizard” (HCW) – which is used to guide administrators through the Office 365 Rich Coexistence setup.  BTW, you’ll notice Microsoft actually no longer uses the phrase “Rich Coexistence”, but instead prefers “hybrid” configuration.</li>
</ul>
<ul>
<li>Address Book Policies (ABP) – which allow an Exchange organization to segment the address list so that separate user populations can be hidden from each other (such as in a multi-tenant environment).  Here is an <a href="http://blogs.technet.com/b/exchange/archive/2011/01/27/3411882.aspx">article</a> that describes how this works, as well as <a href="http://blogs.technet.com/b/exchange/archive/2011/08/30/exchange-server-2010-sp2-and-support-for-hosting-exchange.aspx">another</a> discussing some of the limitations.</li>
</ul>
<ul>
<li>Cross-Site Silent Redirection for OWA – which allows more seamless OWA redirection in a multi-site topology.</li>
</ul>
<ul>
<li>OWA Mini – which provides a text-only OWA experience so that you can use OWA from phones that do not support ActiveSync.</li>
</ul>
<p>Here are some other fun facts:</p>
<ul>
<li>Exchange 2010 SP2 extends the schema.  One interesting change is the new msExchExtensionAttribute attributes.  We’ve had 15 custom attributes for a while now, but this adds 30 more, all of which are multi-valued.  For your reference, Microsoft tracks Exchange schema extensions on this <a href="http://go.microsoft.com/fwlink/?LinkId=178719">page</a>.</li>
</ul>
<ul>
<li>Administrators can now disable the auto-mapping of user mailboxes in Outlook 2007/2010.  This may be helpful if a user has the “Full Access” permission to many other mailboxes.  By default, Outlook will try to mount all of them which could cause performance issues.</li>
</ul>
<ul>
<li><a href="http://mikecrowley.files.wordpress.com/2011/12/image11.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:right;padding-top:0;border:0;" title="The &quot;IIS 6 WMI Compatibility&quot; component is required" src="http://mikecrowley.files.wordpress.com/2011/12/image1_thumb.png?w=239&#038;h=211" alt="The &quot;IIS 6 WMI Compatibility&quot; component is required" width="239" height="211" align="right" border="0" /></a>You’ll need to add the &#8220;IIS 6 WMI Compatibility&#8221; component if you are upgrading from RTM or SP1.  A fresh install would offer to add this for you, but if you’re upgrading, you’ll need add it yourself.  You can easily add the IIS role service with the following two PowerShell commands:<br />
<em>     Import-Module servermanager</em><br />
<em>    Add-WindowsFeature Web-WMI</em></li>
</ul>
<ul>
<li>On some new hardware, I clocked the upgrade at ~22 minutes.  Ironically, Exchange Update Rollups often take longer than this!</li>
</ul>
<ul>
<li>There are many new <a href="http://social.technet.microsoft.com/wiki/contents/articles/exchange-2010-overview.aspx">Wiki</a> pages discussing the features of SP2.  Use these until formal TechNet documentation is available.</li>
<ul>
<li><span style="color:#993300;">UPDATE</span>: TechNet documentation is here: <a href="http://technet.microsoft.com/en-us/library/hh529924.aspx">http://technet.microsoft.com/en-us/library/hh529924.aspx</a></li>
</ul>
</ul>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/exchange-server/'>Exchange Server</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/791/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=791&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/12/05/exchange-2010-service-pack-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/12/image_thumb.png" medium="image">
			<media:title type="html">Version 14.2 (Build 247.5)</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/12/image1_thumb.png" medium="image">
			<media:title type="html">The &#34;IIS 6 WMI Compatibility&#34; component is required</media:title>
		</media:content>
	</item>
		<item>
		<title>Office 365: Past, Present and Future &#8211; a Planet Technologies Webcast</title>
		<link>http://mikecrowley.wordpress.com/2011/11/22/office-365-past-present-and-future-a-planet-technologies-webcast/</link>
		<comments>http://mikecrowley.wordpress.com/2011/11/22/office-365-past-present-and-future-a-planet-technologies-webcast/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 16:52:44 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Office365]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PlanetTechnologies]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=782</guid>
		<description><![CDATA[Planet Technologies is hosting a free webcast in which we will be providing some tips, insights and updates on Office 365 and Exchange Online. If you’re interested in attending, or would like to read the agenda, please see the registration page below. &#160; -REGISTER NOW- About Planet Technologies Planet Technologies, a leading Microsoft partner with [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=782&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.clicktoattend.com/?id=158300"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;float:right;border-top:0;border-right:0;padding-top:0;" title="Office 365: Past, Present and Future – a Planet Technologies Webcast" border="0" alt="Office 365: Past, Present and Future – a Planet Technologies Webcast" align="right" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image0014.jpg?w=407&#038;h=204" width="407" height="204" /></a></p>
<p><a href="http://www.go-planet.com" target="_blank">Planet Technologies</a> is hosting a free webcast in which we will be providing some tips, insights and updates on Office 365 and Exchange Online.</p>
<p>If you’re interested in attending, or would like to read the agenda, please see the registration page below.</p>
<p>&#160;</p>
<p align="center"><b><a href="http://www.clicktoattend.com/?id=158300"><font size="5">-<u>REGISTER NOW</u>-</font></a></b></p>
<p><b></b></p>
<p><b></b></p>
<p><b><em>About Planet Technologies</em></b></p>
<p><em>Planet Technologies, a leading Microsoft partner with multiple gold competencies, is recognized world-wide&#160; as a leading expert in the integration and customization of Microsoft technologies, architecture, security and&#160; management consulting. Planet’s clients include some of the largest public sector and&#160; commercial&#160; organizations&#160; in the world.</em></p>
<p><em>Learn more at </em><a href="http://www.go-planet.com"><em>www.go-planet.com</em></a></p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a>, <a href='http://mikecrowley.wordpress.com/tag/planettechnologies/'>PlanetTechnologies</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/782/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/782/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=782&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/11/22/office-365-past-present-and-future-a-planet-technologies-webcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image0014.jpg" medium="image">
			<media:title type="html">Office 365: Past, Present and Future – a Planet Technologies Webcast</media:title>
		</media:content>
	</item>
		<item>
		<title>Office 365 DirSync (x64) Installation Walkthrough</title>
		<link>http://mikecrowley.wordpress.com/2011/11/21/office-365-dirsync-x64-installation-walkthrough/</link>
		<comments>http://mikecrowley.wordpress.com/2011/11/21/office-365-dirsync-x64-installation-walkthrough/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 23:26:59 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Office365]]></category>
		<category><![CDATA[ActiveDirectory]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=774</guid>
		<description><![CDATA[As Microsoft has already stated, the new 64-bit version of DirSync.exe is not installed or configured differently than its 32-bit predecessor.&#160; However, as a tinkerer, I wanted to verify this and have a look under the hood anyway! Below are some screenshots of my experiences and insights along the way: Before you start: Read and [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=774&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As Microsoft has already <a href="http://community.office365.com/en-us/w/sso/555.aspx">stated</a>, the new 64-bit version of DirSync.exe is not installed or configured differently than its 32-bit predecessor.&#160; However, as a tinkerer, I wanted to verify this and have a look under the hood anyway!</p>
<p>Below are some screenshots of my experiences and insights along the way:</p>
<p><strong>Before you start: </strong><a href="http://onlinehelp.microsoft.com/en-us/office365-enterprises/ff637606.aspx" target="_blank"><strong>Read and follow the instructions</strong></a><strong>!&#160; In this article, I assume you’re at the point where you&#8217;re actually ready to install this product.</strong></p>
<p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="421">
<p>1. First I installed the .Net Framework prerequisites as well as my favorite MMC snap-ins onto a new Windows 2008 R2 server. You can do this using the following two lines in PowerShell</p>
</td>
<td valign="top" width="660">
<p><font face="Courier New">Import-Module ServerManager</font></p>
<p><font face="Courier New">Add-WindowsFeature NET-Framework,RSAT-ADDS -Restart</font></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>2. Then I ran dirsync.exe (downloaded from the portal.microsoftonline.com site).</p>
<p>a. NOTE: Microsoft didn’t bother to change the installer’s executable name (dirsync.exe). This may be confusing if you plan to download and store both x86 and x64 versions.</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image002.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DirSync Install Screenshots" border="0" alt="DirSync Install Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image002_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>3. A few clicks of the “Next” button…</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image004.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DirSync Install Screenshots" border="0" alt="DirSync Install Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image004_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>a. NOTE: We install to the “Program Files” directory. If this were a x86 application we’d be using “\Program Files (x86)”</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image006.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DirSync Install Screenshots" border="0" alt="DirSync Install Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image006_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>b. NOTE: This screen may take 5-10 minutes. It’s installing a few things in the background:</p>
<p>i. SQL 2008 R2 Express</p>
<p>ii. Forefront Identity Manager 2010 (FIM)</p>
<p>iii. Configuration of the FIM Management Agents (MAs)</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image008.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DirSync Install Screenshots" border="0" alt="DirSync Install Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image008_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>…</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image010.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DirSync Install Screenshots" border="0" alt="DirSync Install Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image010_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>4. Once the background tasks have completed, you’re able to run the Configuration Wizard. This is where you will need to have your Office 365 tenant prepared and credentials identified, etc.</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image012.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DirSync Install Screenshots" border="0" alt="DirSync Install Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image012_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>5. Next…</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image014.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Directory Synchronization Configuration Wizard Screenshots" border="0" alt="Directory Synchronization Configuration Wizard Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image014_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>6. You should have created this account <a href="http://onlinehelp.microsoft.com/en-us/Office365-enterprises/ff652544.aspx#BKMK_UserPermissionsandRelatedSettings">earlier</a>. Whatever you put in here will be stored within FIM, and if you ever change the credentials, you’ll need to re-run this setup wizard.</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image016.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Directory Synchronization Configuration Wizard Screenshots" border="0" alt="Directory Synchronization Configuration Wizard Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image016_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>a. Or for the expert user: Dive into FIM directly</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image018.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Directory Synchronization FIM Management Agent" border="0" alt="Directory Synchronization FIM Management Agent" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image018_thumb.jpg?w=244&#038;h=181" width="244" height="181" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>7. Here you need to supply your forest’s Enterprise Admin credentials. This username is not saved anywhere, and is only needed once to set permissions for these new objects:</p>
<p>a.              <br /><i>Yourdomain\</i>MSOL_AD_Sync</p>
<p>b.             <br /><i>Yourdomain\</i>MSOL_AD_Sync_RichCoexistence</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image020.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Directory Synchronization Configuration Wizard Screenshots" border="0" alt="Directory Synchronization Configuration Wizard Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image020_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>8. Selecting this box enables some extra features required for a “hybrid deployment” / “rich coexistence”, and by doing so you’ll allow FIM to update attributes IN YOUR Active Directory. If this box is not checked, FIM will read-only.</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image022.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Directory Synchronization Configuration Wizard Screenshots" border="0" alt="Directory Synchronization Configuration Wizard Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image022_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>9. Next..</p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image024.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Directory Synchronization Configuration Wizard Screenshots" border="0" alt="Directory Synchronization Configuration Wizard Screenshots" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image024_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>10. If you’re ready, you can run the initial full synchronization now. Otherwise, you can run it <a href="http://onlinehelp.microsoft.com/en-us/office365-enterprises/ff652557.aspx#BKMK_SynchronizeDirectories">manually</a> at any time.</p>
<p>a. Once configured, DirSync runs every 3 hours. </p>
</td>
<td valign="top" width="660">
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image027.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="clip_image027" border="0" alt="clip_image027" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image027_thumb.jpg?w=244&#038;h=174" width="244" height="174" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>11. If you promise to be careful, you can poke around in the FIM configuration. <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://mikecrowley.files.wordpress.com/2011/11/wlemoticon-smile.png?w=595" /></p>
<p>a. Note the “hidden” client UI</p>
<p>b. If you get an error when opening the FIM console, log out and then back in. Your account was added to some groups that are not yet part of your login ticket.</p>
<p>c. Clicking the Management Agents tab shows both sides of your configuration. “TargetWebService” is responsible for all of the Office 365 configurations and the “SourceAD” management agent contains your Active Directory connector information (double-click them to open).</p>
<p>NOTE: <strong>Changing the DirSync configuration directly within FIM is unsupported by Microsoft.</strong> They would prefer you rerun the previously mentioned Configuration Wizard if you need to make any changes.</p>
</td>
<td valign="top" width="660">
<p><font face="Courier New">C:\Program Files\Microsoft Online Directory Sync\SYNCBUS\Synchronization Service\UIShell\<b>miisclient.exe</b></font></p>
<p><b></b></p>
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image028.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Unable to connect to the Synchronization Service" border="0" alt="Unable to connect to the Synchronization Service" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image028_thumb.png?w=244&#038;h=161" width="244" height="161" /></a><b></b></p>
<p><b></b></p>
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/clip_image030.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Directory Synchronization FIM Management Agents" border="0" alt="Directory Synchronization FIM Management Agents" src="http://mikecrowley.files.wordpress.com/2011/11/clip_image030_thumb.jpg?w=244&#038;h=190" width="244" height="190" /></a></p>
</td>
</tr>
<tr>
<td valign="top" width="421">
<p>12. Finally, be sure to run Microsoft Update again. You’ll notice that SQL 2008 R2 does not have SP1.</p>
</td>
<td valign="top" width="660"><a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=26727"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Download Service Pack 1 for Microsoft® SQL Server® 2008 R2" border="0" alt="Download Service Pack 1 for Microsoft® SQL Server® 2008 R2" src="http://mikecrowley.files.wordpress.com/2011/11/image1.png?w=244&#038;h=56" width="244" height="56" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/activedirectory/'>ActiveDirectory</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/774/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/774/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=774&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/11/21/office-365-dirsync-x64-installation-walkthrough/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image002_thumb.jpg" medium="image">
			<media:title type="html">DirSync Install Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image004_thumb.jpg" medium="image">
			<media:title type="html">DirSync Install Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image006_thumb.jpg" medium="image">
			<media:title type="html">DirSync Install Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image008_thumb.jpg" medium="image">
			<media:title type="html">DirSync Install Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image010_thumb.jpg" medium="image">
			<media:title type="html">DirSync Install Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image012_thumb.jpg" medium="image">
			<media:title type="html">DirSync Install Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image014_thumb.jpg" medium="image">
			<media:title type="html">Directory Synchronization Configuration Wizard Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image016_thumb.jpg" medium="image">
			<media:title type="html">Directory Synchronization Configuration Wizard Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image018_thumb.jpg" medium="image">
			<media:title type="html">Directory Synchronization FIM Management Agent</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image020_thumb.jpg" medium="image">
			<media:title type="html">Directory Synchronization Configuration Wizard Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image022_thumb.jpg" medium="image">
			<media:title type="html">Directory Synchronization Configuration Wizard Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image024_thumb.jpg" medium="image">
			<media:title type="html">Directory Synchronization Configuration Wizard Screenshots</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image027_thumb.jpg" medium="image">
			<media:title type="html">clip_image027</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image028_thumb.png" medium="image">
			<media:title type="html">Unable to connect to the Synchronization Service</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/clip_image030_thumb.jpg" medium="image">
			<media:title type="html">Directory Synchronization FIM Management Agents</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/image1.png" medium="image">
			<media:title type="html">Download Service Pack 1 for Microsoft® SQL Server® 2008 R2</media:title>
		</media:content>
	</item>
		<item>
		<title>A New Version Of Office 365&#8242;s Directory Synchronization Tool Has Arrived!</title>
		<link>http://mikecrowley.wordpress.com/2011/11/17/a-new-version-of-office-365s-directory-synchronization-tool-has-arrived/</link>
		<comments>http://mikecrowley.wordpress.com/2011/11/17/a-new-version-of-office-365s-directory-synchronization-tool-has-arrived/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 23:42:46 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Office365]]></category>
		<category><![CDATA[ActiveDirectory]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/?p=739</guid>
		<description><![CDATA[Most medium and large organizations using Microsoft’s Office 365 service will also be using “DirSync” to provision and manage user identities. Until now, DirSync has been based on ILM 2007 FP1, which is a functional, but older application, with no x64 support. This means when installing DirSync onto a server, you had to go out [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=739&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Most medium and large organizations using Microsoft’s Office 365 service will also be using “<a href="http://onlinehelp.microsoft.com/en-us/Office365-enterprises/ff652543.aspx" target="_blank">DirSync</a>” to provision and manage user identities. Until now, DirSync has been based on ILM 2007 FP1, which is a functional, but older application, with no x64 support. This means when installing DirSync onto a server, you had to go out of your way to deploy the Windows Server 2008 operating system since the Server 2008 <strong>R2</strong> OS is x64 only.</p>
<p>ILM was replaced by <a href="http://www.microsoft.com/en-us/server-cloud/forefront/identity-manager.aspx" target="_blank">Forefront Identity Manager</a> (FIM) 2010, which uses the x64 CPU architecture and as therefore Windows Server 2008 R2 as well.&#160; </p>
<p><a href="http://mikecrowley.files.wordpress.com/2011/11/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;float:right;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" align="right" src="http://mikecrowley.files.wordpress.com/2011/11/image_thumb.png?w=332&#038;h=91" width="332" height="91" /></a>Today (<em>finally</em>), Microsoft <a href="http://community.office365.com/en-us/w/sso/555.aspx" target="_blank">announced</a> DirSync can now be downloaded for use with the 64-bit architecture.&#160; This is great news for new Office 365 customers &#8211; no more legacy software needed.&#160; However, this does raise a question for existing DirSync users: <em>How do we migrate?</em></p>
<p>You should check out the announcement for details, but essentially, you reformat and rebuild.&#160; Wait!&#160; Before you start muttering nasty things about Microsoft &#8211; the new installation of DirSync will find all of the identities currently in Office 365 and match them up with the appropriate Active Directory accounts in your environment.&#160; There is no downtime for the users.&#160; </p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/activedirectory/'>ActiveDirectory</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/739/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/739/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=739&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/11/17/a-new-version-of-office-365s-directory-synchronization-tool-has-arrived/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/11/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Exchange Connections Slide Decks</title>
		<link>http://mikecrowley.wordpress.com/2011/11/04/exchange-connections-slide-decks/</link>
		<comments>http://mikecrowley.wordpress.com/2011/11/04/exchange-connections-slide-decks/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 15:05:41 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Office365]]></category>
		<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/2011/11/04/exchange-connections-slide-decks/</guid>
		<description><![CDATA[Thanks to all who attended my sessions at Exchange Connections in Las Vegas this week! As promised, I have uploaded the slides. You can download them here: &#160; EXC22_Exchange_Online_Administration EXC23_Exchange_Online_Understanding_Archiving_and_Compliance If you’re looking for slides from other presenters, you can find them here: &#160; http://www.devconnections.com/updates/LasVegas_Fall11/Exchange Filed under: Office365 Tagged: Exchange, Office365<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=733&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Thanks to all who attended my <a href="http://mikecrowley.wordpress.com/2011/08/12/speaking-at-exchange-connections-november-2nd-3rd-in-las-vegas-nevada/" target="_blank">sessions</a> at Exchange Connections in Las Vegas this week!</p>
<p>As promised, I have uploaded the slides. You can download them here:</p>
<p>&nbsp;</p>
<ul>
<li><a href="http://mikecrowley.files.wordpress.com/2011/11/final-crowley_exchangeconnections_exc22_exchange_online_administration.pdf" target="_blank"><span style="font-size:x-small;"><strong>EXC22_Exchange_Online_Administration</strong></span></a></li>
<li><a href="http://mikecrowley.files.wordpress.com/2011/11/final-crowley_exchangeconnections_exc23_exchange_online_understanding_archiving_and_compliance.pdf" target="_blank"><span style="font-size:x-small;"><strong>EXC23_Exchange_Online_Understanding_Archiving_and_Compliance</strong></span></a></li>
</ul>
<p>If you’re looking for slides from other presenters, you can find them here:</p>
<p>&nbsp;</p>
<ul>
<li><a title="http://www.devconnections.com/updates/LasVegas_Fall11/Exchange/" href="http://www.devconnections.com/updates/LasVegas_Fall11/Exchange"><span style="font-size:x-small;"><strong>http://www.devconnections.com/updates/LasVegas_Fall11/Exchange</strong></span></a></li>
</ul>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/733/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/733/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=733&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/11/04/exchange-connections-slide-decks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>
	</item>
		<item>
		<title>RIM Announces BlackBerry Business Cloud Services for Microsoft Office 365</title>
		<link>http://mikecrowley.wordpress.com/2011/10/25/rim-announces-blackberry-business-cloud-services-for-microsoft-office-365/</link>
		<comments>http://mikecrowley.wordpress.com/2011/10/25/rim-announces-blackberry-business-cloud-services-for-microsoft-office-365/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 02:27:00 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[Blackberry]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/2011/10/25/rim-announces-blackberry-business-cloud-services-for-microsoft-office-365/</guid>
		<description><![CDATA[If you haven’t heard, that hosted Blackberry service for Office 365 I mentioned earlier is now accepting participants in their open beta program.&#160; Read more here: http://press.rim.com/release.jsp?id=5261 Filed under: BlackBerry, Office365 Tagged: Blackberry, Office365<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=725&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>If you haven’t heard, that hosted Blackberry service for Office 365 I <a href="http://mikecrowley.wordpress.com/2011/03/16/cloud-based-bes-services-with-bpos-office-365/" target="_blank">mentioned earlier</a> is now accepting participants in their open beta program.&#160; Read more here:</p>
<p><a title="http://press.rim.com/release.jsp?id=5261" href="http://press.rim.com/release.jsp?id=5261">http://press.rim.com/release.jsp?id=5261</a></p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/blackberry-it-information-technology/'>BlackBerry</a>, <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/blackberry/'>Blackberry</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/725/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=725&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/10/25/rim-announces-blackberry-business-cloud-services-for-microsoft-office-365/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>
	</item>
		<item>
		<title>Re-Awarded Microsoft MVP</title>
		<link>http://mikecrowley.wordpress.com/2011/10/06/re-awarded-microsoft-mvp/</link>
		<comments>http://mikecrowley.wordpress.com/2011/10/06/re-awarded-microsoft-mvp/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 00:53:45 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/2011/10/06/re-awarded-microsoft-mvp/</guid>
		<description><![CDATA[Over the weekend I was given the Microsoft MVP award for a second time! Thanks to everyone who follows this blog and attends my Exchange Connections sessions; its because of you I am able to wear this badge of honor for another year. Needless to say: Filed under: Exchange Server Tagged: Exchange, Microsoft<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=721&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Over the weekend I was given the Microsoft MVP award for a second time!</p>
<p>Thanks to everyone who follows this blog and attends my <a href="http://mikecrowley.wordpress.com/2011/08/12/speaking-at-exchange-connections-november-2nd-3rd-in-las-vegas-nevada/" target="_blank">Exchange Connections</a> sessions; its because of you I am able to wear this badge of honor for another year.</p>
<p>Needless to say:</p>
<div style="width:448px;display:block;float:none;margin-left:auto;margin-right:auto;padding:0;" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:a2be3c84-d71f-44ca-b3e0-2a92e1197d2f" class="wlWriterEditableSmartContent">
<div><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='448' height='252' src='http://www.youtube.com/embed/KjMCe_wo1S0?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;hd=1&#038;wmode=transparent' frameborder='0'></iframe></span></div>
</div>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/exchange-server/'>Exchange Server</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/721/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=721&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/10/06/re-awarded-microsoft-mvp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>
	</item>
		<item>
		<title>Hosting Exchange 2010 without the /hosting switch</title>
		<link>http://mikecrowley.wordpress.com/2011/08/30/hosting-exchange-2010-without-the-hosting-switch/</link>
		<comments>http://mikecrowley.wordpress.com/2011/08/30/hosting-exchange-2010-without-the-hosting-switch/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 16:08:04 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/2011/08/30/hosting-exchange-2010-without-the-hosting-switch/</guid>
		<description><![CDATA[The EHLO blog posted an important announcement today regarding Exchange 2010 in hosted environments.  Previously, for Microsoft to support your multi-tenant deployment of Exchange 2010, you had to build a whole new forest and use a special setup.com /hosting installation process.  There were other significant limitations as well. The strict support statement, combined with Microsoft’s [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=718&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img style="display:inline;float:right;" src="http://social.technet.microsoft.com/wiki/resized-image.ashx/__size/550x0/__key/communityserver-wikis-components-files/00-00-00-00-05/4760.18_2D00_04_2D00_2010-15_2D00_39_2D00_47.png" alt="" width="221" height="71" align="right" />The EHLO blog posted an important <a href="http://blogs.technet.com/b/exchange/archive/2011/08/30/exchange-server-2010-sp2-and-support-for-hosting-exchange.aspx" target="_blank">announcement</a> today regarding Exchange 2010 in hosted environments.  Previously, for Microsoft to support your multi-tenant deployment of Exchange 2010, you had to build a whole new forest and use a special <em>setup.com /hosting</em> installation process.  There were <a href="http://mikecrowley.wordpress.com/2010/06/08/exchange-2010-multi-tenant-support-2/" target="_blank">other</a> significant limitations as well.</p>
<p>The strict support statement, combined with Microsoft’s release of Office 365 really came as a one-two punch to some of the smaller companies who wished to host Exchange but could not afford to employ developers and/or take the risk of forfeiting support from Microsoft.  It seemed like Microsoft may have lost some love for their hosting partners.</p>
<p>With the Exchange 2010 SP2 update (scheduled to launch later this year), <strong>you will be able to host a multi-tenant environment with a regular deployment of Exchange.</strong>  This is made possible by the new <a href="http://blogs.technet.com/b/exchange/archive/2011/01/27/3411882.aspx" target="_blank">Address Book Policies</a> and specific configurations to be documented with the SP2 release.</p>
<p>Personally, I’d look at this very carefully before deploying any new /hosting environments.  This (SP2) seems like a much simpler deployment to maintain.</p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/exchange-server/'>Exchange Server</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/718/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/718/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=718&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/08/30/hosting-exchange-2010-without-the-hosting-switch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://social.technet.microsoft.com/wiki/resized-image.ashx/__size/550x0/__key/communityserver-wikis-components-files/00-00-00-00-05/4760.18_2D00_04_2D00_2010-15_2D00_39_2D00_47.png" medium="image" />
	</item>
		<item>
		<title>How to Connect the BlackBerry Device Simulator to a BlackBerry Enterprise Server (Screenshots)</title>
		<link>http://mikecrowley.wordpress.com/2011/08/25/how-to-connect-the-blackberry-device-simulator-to-a-blackberry-enterprise-server-screenshots/</link>
		<comments>http://mikecrowley.wordpress.com/2011/08/25/how-to-connect-the-blackberry-device-simulator-to-a-blackberry-enterprise-server-screenshots/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 21:47:59 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[Blackberry]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/2011/08/25/how-to-connect-the-blackberry-device-simulator-to-a-blackberry-enterprise-server-screenshots/</guid>
		<description><![CDATA[Let me start off by acknowledging this isn’t exactly an original topic.&#160; Many have discussed it in the various BlackBerry-related forums and RIM has an official article on it (albeit very old).&#160; I even found a video with similar instructions for BES 4x.&#160; What I couldn’t find however was an illustrated and current (BES 5x) [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=709&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Let me start off by acknowledging this isn’t exactly an original topic.&#160; Many have discussed it in the various BlackBerry-related forums and RIM has an official <a href="http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800738/800792/801083/How_To_-_Connect_the_BlackBerry_Simulator_to_a_BlackBerry_Enterprise_Server.html?nodeid=800986&amp;vernum=0" target="_blank">article</a> on it (albeit very old).&#160; I even found a <a href="http://www.youtube.com/watch?v=yWQRB5JLwJ0" target="_blank">video</a> with similar instructions for BES 4x.&#160; What I couldn’t find however was an <em>illustrated </em>and<em> current</em> (BES 5x) walkthrough of testing “Enterprise Activation” from a simulated handheld; so if that’s what you are after, please read on…</p>
<p>&#160;</p>
<p>Before I get into the steps themselves let’s take a look at one of the simulators, which is based on Blackberry OS 7 device software:</p>
<p>You should know this software is free!&#160; You can download it <a href="http://us.blackberry.com/developers/resources/simulators.jsp" target="_blank">here</a> after you complete the registration.<a href="http://mikecrowley.files.wordpress.com/2011/08/image1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:right;padding-top:0;border-width:0;" title="BlackBerry Device Simulator" border="0" alt="BlackBerry Device Simulator" align="right" src="http://mikecrowley.files.wordpress.com/2011/08/image_thumb1.png?w=325&#038;h=578" width="325" height="578" /></a></p>
<p>Once you run through the application setup, you’re greeted with this intuitive interface<strong> </strong></p>
<p><strong>&#8212;&#8212;&#8212;&gt;</strong></p>
<p>Within, you can do all softs of fun things such as navigate the menus, take screenshots, simulate use of the touchscreen, compass and more.</p>
<p><a href="http://mikecrowley.files.wordpress.com/2011/08/image2.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BlackBerry Device Simulator Device Manipulator" border="0" alt="BlackBerry Device Simulator Device Manipulator" src="http://mikecrowley.files.wordpress.com/2011/08/image_thumb2.png?w=222&#038;h=318" width="222" height="318" /></a></p>
<p>What we’re after today however is Enterprise Activation (the process of associating the handheld with a Blackberry Enterprise Server).</p>
<p>Initially, I was discouraged to see Enterprise Activation was not working via the normal process:</p>
<p><a href="http://mikecrowley.files.wordpress.com/2011/08/image3.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="Activation Request failed.  A service connection is unavailable" border="0" alt="Activation Request failed.  A service connection is unavailable" src="http://mikecrowley.files.wordpress.com/2011/08/image_thumb3.png?w=399&#038;h=300" width="399" height="300" /></a></p>
<p>&#160;</p>
<p>But after some research I learned it can be completed via simulating a USB connection to the BAS interface instead.</p>
<p>To accomplish this, follow the below steps:</p>
<p align="right"><em><span style="font-size:xx-small;">(Click images to enlarge)</span></em></p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="139">1. Launch the simulator. You may need to resize the screen and click through a few pop-ups to get to the device’s main screen.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image002.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BlackBerry Device Simulator Pop-ups" border="0" alt="BlackBerry Device Simulator Pop-ups" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image002_thumb.jpg?w=389&#038;h=251" width="389" height="251" /></a></td>
</tr>
<tr>
<td valign="top" width="139">2. From the <strong>Simulate</strong> menu button, select <strong>USB Cable Connected</strong>.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image004.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="USB Cable Connected" border="0" alt="USB Cable Connected" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image004_thumb.jpg?w=388&#038;h=116" width="388" height="116" /></a></td>
</tr>
<tr>
<td valign="top" width="139">3. From the same computer, launch the BAS web site. Accept certificate warnings and install ActiveX CAB files as prompted. Depending on your browser configuration you may need to adjust the security settings.</td>
<td valign="top" width="499">
<p align="center"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image006.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BlackBerry Administrative Service" border="0" alt="BlackBerry Administrative Service" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image006_thumb.jpg?w=393&#038;h=85" width="393" height="85" /></a></p>
<p align="center"><em><span style="color:#a5a5a5;">The default URL is: </span><a href="https://server.domain.local:443/webconsole/login"><span style="color:#a5a5a5;">https://server.domain.local:443/webconsole/login</span></a></em></p>
<p align="center">
<p align="center">
<p align="center"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image008.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Internet Explorer blocked an ActiveX control, so this page might not display correctly." border="0" alt="Internet Explorer blocked an ActiveX control, so this page might not display correctly." src="http://mikecrowley.files.wordpress.com/2011/08/clip_image008_thumb.jpg?w=379&#038;h=48" width="379" height="48" /></a></p>
<p align="center"><em><span style="color:#a5a5a5;">(Bad)</span></em></p>
</td>
</tr>
<tr>
<td valign="top" width="139">4. You can verify the device is properly connected by expanding the <strong>Devices</strong> menu tree on the left and selecting <strong>Device properties</strong>.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image010.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BAS Device properties" border="0" alt="BAS Device properties" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image010_thumb.jpg?w=366&#038;h=159" width="366" height="159" /></a></td>
</tr>
<tr>
<td valign="top" width="139">5. Before you can begin the&#160; EA process, you need to create a user. Select a user from your directory that does not currently have a Blackberry device. To do this, expand the <strong>BlackBerry solution management</strong> menu tree on the left and select <strong>Create a user</strong>.
<p>6. Once on this screen, simply select <strong>Search</strong> from the right. It will pull up all of the users in your Exchange Server environment.</p>
</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image012.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BAS Create a user" border="0" alt="BAS Create a user" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image012_thumb.jpg?w=413&#038;h=132" width="413" height="132" /></a><strong></strong></td>
</tr>
<tr>
<td valign="top" width="139">7. Select a test user and click <strong>Continue</strong>.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image013.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BAS User Selection" border="0" alt="BAS User Selection" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image013_thumb.png?w=381&#038;h=105" width="381" height="105" /></a></td>
</tr>
<tr>
<td valign="top" width="139">8. On the following screen, select <strong>Create a user without activation password</strong>.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image014.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BAS Create a user without activation password" border="0" alt="BAS Create a user without activation password" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image014_thumb.png?w=382&#038;h=133" width="382" height="133" /></a></td>
</tr>
<tr>
<td valign="top" width="139">9. Expand the <strong>Devices </strong>menu tree on the left and select <strong>Manage current device</strong>.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image015.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BAS Manage current device" border="0" alt="BAS Manage current device" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image015_thumb.png?w=415&#038;h=158" width="415" height="158" /></a></td>
</tr>
<tr>
<td valign="top" width="139">10. Select <strong>Assign the current device to a user</strong>.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image016.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BAS Assign the current device to a user" border="0" alt="BAS Assign the current device to a user" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image016_thumb.png?w=363&#038;h=131" width="363" height="131" /></a></td>
</tr>
<tr>
<td valign="top" width="139">11. Click <strong>Search</strong> once again and select the test user.
<p>12. Click <strong>Associate user</strong>.</p>
</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image017.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="BAS Associate user" border="0" alt="BAS Associate user" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image017_thumb.png?w=226&#038;h=177" width="226" height="177" /></a></td>
</tr>
<tr>
<td valign="top" width="139">13. Once complete, notice a new envelope icon on the simulator (covered with a briefcase). This represents the new EA relationship.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image018.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="Blackberry device main screen" border="0" alt="Blackberry device main screen" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image018_thumb.png?w=306&#038;h=230" width="306" height="230" /></a></td>
</tr>
<tr>
<td valign="top" width="139">14. Touch the new envelope and compose a test message.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image019.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="Blackberry device test message" border="0" alt="Blackberry device test message" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image019_thumb.png?w=337&#038;h=121" width="337" height="121" /></a></td>
</tr>
<tr>
<td valign="top" width="139">15. Verify it reached its destination and that the message was saved to your test user’s <strong>Sent Items</strong> folder.</td>
<td valign="top" width="499"><a href="http://mikecrowley.files.wordpress.com/2011/08/clip_image020.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="OWA Sent Items folder" border="0" alt="OWA Sent Items folder" src="http://mikecrowley.files.wordpress.com/2011/08/clip_image020_thumb.png?w=416&#038;h=176" width="416" height="176" /></a></td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>And we’re done! I hope this was helpful.</p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/blackberry-it-information-technology/'>BlackBerry</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/blackberry/'>Blackberry</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/709/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/709/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=709&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/08/25/how-to-connect-the-blackberry-device-simulator-to-a-blackberry-enterprise-server-screenshots/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/image_thumb1.png" medium="image">
			<media:title type="html">BlackBerry Device Simulator</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/image_thumb2.png" medium="image">
			<media:title type="html">BlackBerry Device Simulator Device Manipulator</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/image_thumb3.png" medium="image">
			<media:title type="html">Activation Request failed.  A service connection is unavailable</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image002_thumb.jpg" medium="image">
			<media:title type="html">BlackBerry Device Simulator Pop-ups</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image004_thumb.jpg" medium="image">
			<media:title type="html">USB Cable Connected</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image006_thumb.jpg" medium="image">
			<media:title type="html">BlackBerry Administrative Service</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image008_thumb.jpg" medium="image">
			<media:title type="html">Internet Explorer blocked an ActiveX control, so this page might not display correctly.</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image010_thumb.jpg" medium="image">
			<media:title type="html">BAS Device properties</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image012_thumb.jpg" medium="image">
			<media:title type="html">BAS Create a user</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image013_thumb.png" medium="image">
			<media:title type="html">BAS User Selection</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image014_thumb.png" medium="image">
			<media:title type="html">BAS Create a user without activation password</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image015_thumb.png" medium="image">
			<media:title type="html">BAS Manage current device</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image016_thumb.png" medium="image">
			<media:title type="html">BAS Assign the current device to a user</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image017_thumb.png" medium="image">
			<media:title type="html">BAS Associate user</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image018_thumb.png" medium="image">
			<media:title type="html">Blackberry device main screen</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image019_thumb.png" medium="image">
			<media:title type="html">Blackberry device test message</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/clip_image020_thumb.png" medium="image">
			<media:title type="html">OWA Sent Items folder</media:title>
		</media:content>
	</item>
		<item>
		<title>Speaking at Exchange Connections: November 2nd &amp; 3rd in Las Vegas, Nevada</title>
		<link>http://mikecrowley.wordpress.com/2011/08/12/speaking-at-exchange-connections-november-2nd-3rd-in-las-vegas-nevada/</link>
		<comments>http://mikecrowley.wordpress.com/2011/08/12/speaking-at-exchange-connections-november-2nd-3rd-in-las-vegas-nevada/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 18:27:23 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Office365]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/2011/08/12/speaking-at-exchange-connections-november-2nd-3rd-in-las-vegas-nevada/</guid>
		<description><![CDATA[Would you like an excuse to get out of the office for a few days?  When is the last time you learned something new?  Or how would you like an opportunity to share fresh ideas on the technology you’re passionate for? Or heck, maybe it’s just been a while since you’ve been to Vegas?  Join [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=669&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.devconnections.com/shows/fall2011/registration.aspx?s=181" target="_blank"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:right;padding-top:0;border:0;" title="DevConnections" src="http://mikecrowley.files.wordpress.com/2011/08/devconnections.png?w=361&#038;h=149" alt="DevConnections" width="361" height="149" align="right" border="0" /></a><span style="font-size:x-small;">W</span>ould you like an excuse to get out of the office for a few days?  When is the last time you learned something new?  Or how would you like an opportunity to share fresh ideas on the technology you’re passionate for?</p>
<p>Or heck, maybe it’s just been a while since you’ve been to <span style="font-size:x-small;">Vegas?</span>  <img class="wlEmoticon wlEmoticon-winkingsmile" style="border-style:none;" src="http://mikecrowley.files.wordpress.com/2011/08/wlemoticon-winkingsmile.png?w=595" alt="Winking smile" /></p>
<p>Join me and other Microsoft enthusiasts at the <strong><span style="font-size:x-small;">D</span><span style="font-size:xx-small;">EV</span></strong><span style="font-size:x-small;">C</span><span style="font-size:xx-small;">ONNECTIONS</span> conference this fall!  This semiannual event covers many tracks from Visual Studio to Exchange Server to Microsoft’s hot new cloud products: Azure and Office 365.</p>
<p>In addition to attending some great sessions, I will also be presenting on two topics:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="638"><strong>Exchange Online: Administration</strong></td>
</tr>
<tr>
<td valign="top" width="638">Be careful not to fool yourself; Exchange Online (part of Office 365) offloads infrastructure management, but as an administrator, you are still responsible for the administration of your user mailboxes, Internet mail flow, message tracking and more! This session introduces you to the various administrative interfaces of Exchange Online, Forefront, RBAC, provisioning and other operational topics.</td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="638"><strong>Exchange Online: Understanding Archiving and Compliance</strong></td>
</tr>
<tr>
<td valign="top" width="638">Thinking of moving to Office 365? Whether you are aiming for a period of coexistence or a complete migration, your archival and compliance requirements are not going away! In this session we examine the features and functionality that Microsoft provides around retention, archiving, and search.</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><a href="http://www.devconnections.com/shows/fall2011/registration.aspx?s=181" target="_blank"><span style="font-size:small;">Sign up here</span></a><span style="font-size:small;">, and use the <strong>SPKR </strong>discount code to save $50.</span></p>
<p>And if that’s not incentive enough, I’ll close by reminding you that <a href="http://www.vegas.com/halloween/" target="_blank">Halloween in Las Vegas</a> should prove to be very <em>interesting…</em></p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/office365/'>Office365</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/exchange/'>Exchange</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://mikecrowley.wordpress.com/tag/office365/'>Office365</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/669/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=669&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/08/12/speaking-at-exchange-connections-november-2nd-3rd-in-las-vegas-nevada/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/devconnections.png" medium="image">
			<media:title type="html">DevConnections</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/wlemoticon-winkingsmile.png" medium="image">
			<media:title type="html">Winking smile</media:title>
		</media:content>
	</item>
		<item>
		<title>A Picture Says a Thousand Words: TechNet Forums Now Supports Images</title>
		<link>http://mikecrowley.wordpress.com/2011/08/11/a-picture-says-a-thousand-words-technet-forums-now-supports-images/</link>
		<comments>http://mikecrowley.wordpress.com/2011/08/11/a-picture-says-a-thousand-words-technet-forums-now-supports-images/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 15:07:25 +0000</pubDate>
		<dc:creator>Mike Crowley</dc:creator>
				<category><![CDATA[Computers and Internet]]></category>
		<category><![CDATA[#TechNet]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">https://mikecrowley.wordpress.com/2011/08/11/a-picture-says-a-thousand-words-technet-forums-now-supports-images/</guid>
		<description><![CDATA[While replying to a question on the TechNet support forums, I noticed a little green button that wasn’t there before: It seems that Microsoft has finally created a way to upload pictures to the forums!&#160; No more feeling around in the dark, trying to guess what’s wrong. As the seasoned forum participants will tell you, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=665&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>While replying to a question on the <a href="http://social.technet.microsoft.com/Forums/en-US/categories">TechNet support forums</a>, I noticed a little green button that wasn’t there before:</p>
<p><a href="http://mikecrowley.files.wordpress.com/2011/08/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;padding-top:0;" title="Green Image Upload Button" border="0" alt="Green Image Upload Button" src="http://mikecrowley.files.wordpress.com/2011/08/image_thumb.png?w=472&#038;h=125" width="472" height="125" /></a></p>
<p>It seems that Microsoft has finally created a way to upload pictures to the forums!&#160; No more feeling around in the dark, trying to guess what’s wrong.</p>
<p>As the seasoned forum participants will tell you, this isn’t <em>entirely</em> new.&#160; You’ve always been able to add an image if it was hosted by another site via editing the thread’s HTML manually, but the introduction of this button will now allow you to store images with Microsoft; no 3rd party site needed.&#160; And more importantly, this will allow <em>anyone</em> to upload a screenshot.</p>
<p>Once you upload an image, there are controls to drag it into place, as well as controls to resize.</p>
<p>I’m curious to see how this goes.&#160; While I think it’s a needed addition, I would imagine there is a high risk of abuse, or worse, administrators accidently exposing sensitive information about their environments.</p>
<p>&#160;</p>
<p>Do you use the TechNet forums?&#160; If no, why not?&#160; What other forums do you like?</p>
<br />Filed under: <a href='http://mikecrowley.wordpress.com/category/it-information-technology/computers-and-internet/'>Computers and Internet</a> Tagged: <a href='http://mikecrowley.wordpress.com/tag/technet/'>#TechNet</a>, <a href='http://mikecrowley.wordpress.com/tag/microsoft/'>Microsoft</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikecrowley.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikecrowley.wordpress.com/665/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikecrowley.wordpress.com&#038;blog=8719699&#038;post=665&#038;subd=mikecrowley&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikecrowley.wordpress.com/2011/08/11/a-picture-says-a-thousand-words-technet-forums-now-supports-images/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/697c96faf47bfda9eff1b571885bfc8c?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">mikecrowley</media:title>
		</media:content>

		<media:content url="http://mikecrowley.files.wordpress.com/2011/08/image_thumb.png" medium="image">
			<media:title type="html">Green Image Upload Button</media:title>
		</media:content>
	</item>
	</channel>
</rss>
