<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LDC - LoPo dot com</title>
	<atom:link href="http://www.lopo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lopo.com</link>
	<description>Back to Basics or Something</description>
	<lastBuildDate>Mon, 09 Aug 2010 18:26:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>#PowerShell #Exchange Script for Messaging Tracking Logs Per User Stats</title>
		<link>http://www.lopo.com/2010/08/09/powershell-exchange-script-for-messaging-tracking-logs-per-user-stats/</link>
		<comments>http://www.lopo.com/2010/08/09/powershell-exchange-script-for-messaging-tracking-logs-per-user-stats/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 17:30:15 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.lopo.com/?p=61</guid>
		<description><![CDATA[A few months ago I was working on collecting some statistics out of our Exchange environment.  I wanted to take<a href="http://www.lopo.com/2010/08/09/powershell-exchange-script-for-messaging-tracking-logs-per-user-stats/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>A few months ago I was working on collecting some statistics out of our Exchange environment.  I wanted to take a few samples of user specific message traffic to help with some sizing calculations and just do a sanity check on our existing usage.  I know there are other tools and utilities that exist, but I wanted try to write my own.  As a result, I added and defined the following requirements for this particular script:</p>
<ol>
<li>Hand it over to a Helpdesk Analyst and have the output make sense to them</li>
<li>Consume the script logic into a much larger health and status check on a per user basis script.</li>
<li>Make it possible for the scripts executor to have no knowledge of the Exchange environment other than having the Exchange Management tools installed.</li>
</ol>
<p>A few challenges arose during this process:</p>
<ol>
<li> A multi-site Exchange environment requires Site &amp; Hub Transport discovery of the site that the mailbox is homed.  If you were a Helpdesk Analyst you most likely wouldn&#8217;t know this information.</li>
<li> There could be multiple Hub Transport servers in a site and message tracking events could exist on both.</li>
<li>Performance hit on the Hub Transport servers in the event 30 days was opt&#8217;d for.</li>
</ol>
<p>I&#8217;m not going to include the entire script in the body of this post, you can download it at the bottom, but I want to call out a few sections:</p>
<p>The logic behind the Site &amp; Hub Transport discovery</p>
<p>Here is the cross selection of the script that requests the SMTP Address of the user who you want to report against.  From here we determine the Mailbox server and correlating AD Site.  Once we&#8217;ve determined the site we can then grab a list of Hub Transport servers to query against.</p>
<pre class="brush: powershell;">
$user = Read-Host &quot;What is the users email address?&quot;
$MbxServer = (get-mailbox $user).Servername
$Site = (Get-exchangeserver $MbxServer).site.name
$SiteHTServers = Get-Exchangeserver | Where {($_.IsHubTransportServer -eq $true) -and ($_.site.name -like &quot;$Site&quot;)}
</pre>
<p>The second and last second piece of logic I wanted to focus on is the use of a <a href="http://technet.microsoft.com/en-us/library/ff730937.aspx" target="_blank">Switch statement</a> which was new to me.  I&#8217;ve used Case statements in VB programming in my past, so it was relatively easy to understand.  Essentially we are defining variables based the $DateInput variable which is the value the user enters interactively for the number of days.</p>
<pre class="brush: powershell;">
switch ($DateInput)
    {
        1 {
           $StartDate = $today
           $Days = 1
           $SizeFactor = &quot;1KB&quot;
           $SizeLabel = &quot;KB&quot;
           break;
          }
        2 {
           $StartDate = (get-date).adddays(-7).ToString(&quot;MM/dd/yyyy&quot;)
           $Days = 7
           $SizeFactor = &quot;1MB&quot;
           $SizeLabel = &quot;MB&quot;
           break;
          }
        3 {
           $StartDate = (get-date).adddays(-14).ToString(&quot;MM/dd/yyyy&quot;)
           $Days = 14
           $SizeFactor = &quot;1MB&quot;
           $SizeLabel = &quot;MB&quot;
           break;
          }
        4 {
           $StartDate = (get-date).adddays(-30).ToString(&quot;MM/dd/yyyy&quot;)
           $Days = 30
           $SizeFactor = &quot;1GB&quot;
           $SizeLabel = &quot;GB&quot;
           break;
          }
        default {
           &quot;** The selection could not be determined **&quot;;
           break;
          }
    }
</pre>
<p>You can download the full script here: <a href="http://www.lopo.com/wp-content/uploads/2010/08/get-messagetracking.txt">get-messagetracking.txt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2010/08/09/powershell-exchange-script-for-messaging-tracking-logs-per-user-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#PowerShell Date Countdown Fun</title>
		<link>http://www.lopo.com/2010/08/02/powershell-date-countdown-fun/</link>
		<comments>http://www.lopo.com/2010/08/02/powershell-date-countdown-fun/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 19:40:26 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.lopo.com/?p=50</guid>
		<description><![CDATA[The other day I was trying to figure out how much longer until my anniversary date at work.  I figured<a href="http://www.lopo.com/2010/08/02/powershell-date-countdown-fun/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>The other day I was trying to figure out how much longer until my anniversary date at work.  I figured I could open my Outlook calendar and start counting, but then I said, I bet this is easier to do in PowerShell!  So I goofed around and came up with the following.  I&#8217;m sure you could add a few more lines and loop through it to build a countdown script&#8230;</p>
<p>Here&#8217;s an example of how to use it.  Let&#8217;s say my anniversary date was October 1, 2010 or &#8220;10/01/10&#8243; for this example.</p>
<p>First we want to figure out what today is using the Get-Date cmdlet.  Then we want to define our anniversary date and then take the difference of the two.</p>
<pre class="brush: powershell;">
$today = Get-Date
$anniversary = &quot;10/01/10&quot;
[datetime]$anniversary - $today
</pre>
<p>This will generate output like similar to this:</p>
<blockquote>
<div id="_mcePaste">Days              : 59</div>
<div id="_mcePaste">Hours             : 11</div>
<div id="_mcePaste">Minutes           : 30</div>
<div id="_mcePaste">Seconds           : 49</div>
<div id="_mcePaste">Milliseconds      : 80</div>
<div id="_mcePaste">Ticks             : 51390490805093</div>
<div id="_mcePaste">TotalDays         : 59.4797347281169</div>
<div id="_mcePaste">TotalHours        : 1427.51363347481</div>
<div id="_mcePaste">TotalMinutes      : 85650.8180084883</div>
<div id="_mcePaste">TotalSeconds      : 5139049.0805093</div>
<div id="_mcePaste">TotalMilliseconds : 5139049080.5093</div>
</blockquote>
<div>While that might produce you what you want with a lot of information you don&#8217;t, you can simply use the Days property to output the number of days remaining.</div>
<div>
<pre class="brush: powershell;">
$today = Get-Date
$anniversary = &quot;10/01/10&quot;
([datetime]$anniversary - $today).days
</pre>
</div>
<div>Which will return:</div>
<div>
<blockquote>
<div>PS C:\&gt; ([Datetime]$anniversary &#8211; $Today).days</div>
<div>59</div>
</blockquote>
</div>
<div>Pretty simple.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2010/08/02/powershell-date-countdown-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechEd 2010 &#8211; Day 1</title>
		<link>http://www.lopo.com/2010/06/09/teched-2010-day-1/</link>
		<comments>http://www.lopo.com/2010/06/09/teched-2010-day-1/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 13:20:55 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[teched]]></category>

		<guid isPermaLink="false">http://www.lopo.com/?p=39</guid>
		<description><![CDATA[Day 1 was quite the experience.  From the huge amounts of attendees trying to walk, and ultimately coming to a<a href="http://www.lopo.com/2010/06/09/teched-2010-day-1/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Day 1 was quite the experience.  From the huge amounts of attendees trying to walk, and ultimately coming to a halt, in a 25 foot wide hallway of session conference rooms, to getting to participate on an Exchange round table at the <a href="http://www.therustynail.org/" target="_blank">Rustynail</a> with members of Exchange product team.</p>
<p><strong>Sessions</strong></p>
<p><strong>﻿</strong>This is my first time attending TechEd so I wasn&#8217;t quite sure what to expect.  I had heard mainly good things about it, but some &#8220;eeehhh&#8221; things.<br />
After getting my Starbucks &#8211; they have one INSIDE the convention center &#8211; YES! &#8211; I found my seat in the jam packed keynote hall . Things started off with the Keynote which was lead by Microsoft&#8217;s Bob Muglia.  You can catch a web reply version <a href="http://www.msteched.com/2010/NorthAmerica/Keynote01" target="_blank">here</a>.  I, along with other attendees, thought it was a bit drawn out and could have been condensed.  There was two cool technologies that were demoed; The next version of Office Communications Server &#8211; rebranded as Microsoft Communications Server 2010.  We&#8217;re looking at deploying this when it RTM&#8217;s later this fall.  The client is extremely simplified for the users and eash to understand &#8211; something that hasn&#8217;t been Microsoft&#8217;s strong point.  They also demoed parts of the System Center Suite, namely Virtual Machine Manager 2011 Beta, which appears to bring a bucket full of new features.  It ended with Microsoft&#8217;s Tony Scott, their CIO, who isn&#8217;t presenter material.  I think his monotone voice put half the hall to sleep.</p>
<p>Following the keynote there were foundational sessions, none of which were interesting, so I opt&#8217;d to hit the exhibition floor and pick up swag.  Yup, the recession is over, vendors are giving away T-shirts regularly and offering varying raffles of Netbooks, iPads, and Xbox 360&#8242;s.</p>
<p>My afternoon was spent in breakout sessions.  Two were good, one, not so much.  Surprising the one that sucked was around automating IT with PowerShell &#8211; which I thought would have been great.  Let me explain, the subject is good, the presentation wasn&#8217;t.</p>
<p><strong>Post Sessions</strong></p>
<p>After the final session, there was an Exhibit Reception which was a way to get and keep attendees talking and providing vendors with the oh so important contact information to receive spam post conference.  I will say, offering tons of food and an open bar is a great way to achieve this.</p>
<p>After the Exhibition Reception, I headed over to the Exchange Roundtable that Jeff Guillet from <a href="http://www.expta.com" target="_blank">Expta.com</a> put together with about 20-25 other Exchange crazies.  He arranged for members of the Exchange product team to attend and participate in our discussions, notably <a href="http://msexchangeteam.com/archive/2005/08/25/409819.aspx" target="_blank">Ross Smitth IV</a> and <a href="http://blogs.technet.com/b/scottschnoll/" target="_blank">Scott Schnoll</a>.  It was a great evening and I enjoyed talking to the folks that attended.  There was a gentlemen that I actually didn&#8217;t get his name, but he was from Sweden and 1 of 5 <a href="http://www.microsoft.com/learning/en/us/certification/master.aspx" target="_blank">Microsoft Certified Masters</a> &#8211; Exchange 2010 in the world.  He shared that experience amongst many others.</p>
<p>Good times.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2010/06/09/teched-2010-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If only there was inflight WiFi on this plane</title>
		<link>http://www.lopo.com/2010/05/08/if-only-there-was-inflight-wifi-on-this-plane/</link>
		<comments>http://www.lopo.com/2010/05/08/if-only-there-was-inflight-wifi-on-this-plane/#comments</comments>
		<pubDate>Sun, 09 May 2010 04:35:12 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.lopo.com/2010/05/08/if-only-there-was-inflight-wifi-on-this-plane/</guid>
		<description><![CDATA[As I type this I&#8217;m cruising at 37,000 feet just south of the Sea of Okhotsk. We&#8217;re about 1025 miles<a href="http://www.lopo.com/2010/05/08/if-only-there-was-inflight-wifi-on-this-plane/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>As I type this I&#8217;m cruising at 37,000 feet just south of the Sea of Okhotsk.  We&#8217;re about 1025 miles from Narita airport according to this fancy LCD screen in front of me.  I need to remain awake for another 6-8 hours to help with jet lag.  We&#8217;ll see how successful I am at that as I have a 2hr bus ride to me hotel.   </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2010/05/08/if-only-there-was-inflight-wifi-on-this-plane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From the iPad</title>
		<link>http://www.lopo.com/2010/05/05/from-the-ipad/</link>
		<comments>http://www.lopo.com/2010/05/05/from-the-ipad/#comments</comments>
		<pubDate>Thu, 06 May 2010 04:56:10 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.lopo.com/2010/05/05/from-the-ipad/</guid>
		<description><![CDATA[Just testing a post from my two day old iPad. I&#8217;m using the WordPress for iPad App and it&#8217;s pretty<a href="http://www.lopo.com/2010/05/05/from-the-ipad/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Just testing a post from my two day old iPad.  I&#8217;m using the WordPress for iPad App and it&#8217;s pretty cool.  Not super functional, but does allow for basic text input and post composition.  All for now!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2010/05/05/from-the-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storm and Bold, my new toys</title>
		<link>http://www.lopo.com/2008/11/21/storm-and-bold-my-new-toys/</link>
		<comments>http://www.lopo.com/2008/11/21/storm-and-bold-my-new-toys/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 05:00:53 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://dev.lopo.com/?p=3</guid>
		<description><![CDATA[Welp, today finally came…today as in the release date of the Blackberry Storm.  I picked one up this morning at<a href="http://www.lopo.com/2008/11/21/storm-and-bold-my-new-toys/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Welp, today finally came…today as in the release date of the Blackberry Storm.  I picked one up this morning at 0&#8242;dark 30AM.  I was first in line and frooze my rear off in doing so, but it was worth it.  So far I’m   pleasantly surprised, it’s  better than my expectations and I really like it.  I also got a AT&amp;T BB Bold this week at work and it’s definitely a sweet device. I can pound out emails like usual on it while the Storm’s SurePress will take some getting used to.  Both devices have beautiful displays, top notch for mobile devices…and arguably the best of any smartphones.</p>
<p>I’m going to need a few days to get used to the Storm’s SurePress technology.  I’ll report back after!</p>
<p>Here’s a pic of my new toys.</p>
<p><img class="alignnone size-medium wp-image-4" title="112108" src="http://dev.lopo.com/wp-content/uploads/2009/10/112108-300x239.jpg" alt="112108" width="300" height="239" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2008/11/21/storm-and-bold-my-new-toys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Off to Get Married</title>
		<link>http://www.lopo.com/2007/07/06/off-to-get-married/</link>
		<comments>http://www.lopo.com/2007/07/06/off-to-get-married/#comments</comments>
		<pubDate>Sat, 07 Jul 2007 03:41:44 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://dev.lopo.com/?p=8</guid>
		<description><![CDATA[I’ve been a bit busy lately and added a few domains to my hosting account, as a result, LDC was<a href="http://www.lopo.com/2007/07/06/off-to-get-married/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>I’ve been a bit busy lately and added a few domains to my hosting account, as a result, LDC was broke like a bad joke.  It’s fixed and back online, I know many were sad at it’s offlineness.</p>
<p>Anyways, I’m off getting married and on a 3 week hiatus.  Here’s proof, my desk at work…. I’ve never taken more than 4 days off work, hopefully I will still have a job when I return.</p>
<div id="attachment_10" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-10" title="070607" src="http://dev.lopo.com/wp-content/uploads/2009/10/070607-300x240.jpg" alt="Desk @ work" width="300" height="240" /><p class="wp-caption-text">Desk @ work</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2007/07/06/off-to-get-married/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helpdesk Hilarity</title>
		<link>http://www.lopo.com/2006/11/01/helpdesk-hilarity/</link>
		<comments>http://www.lopo.com/2006/11/01/helpdesk-hilarity/#comments</comments>
		<pubDate>Thu, 02 Nov 2006 03:52:37 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://dev.lopo.com/?p=18</guid>
		<description><![CDATA[This week at work I was invited to join the Campus Slow down committee. We’ve been experiencing problems with different<a href="http://www.lopo.com/2006/11/01/helpdesk-hilarity/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>This week at work I was invited to join the Campus Slow down committee. We’ve been experiencing problems with different users varying from “Everything is slow” to “Outlook locks up”. Since I am responsible for the Email infrastructure, I got the invite, along with our LAN architect, Active Directory Administrators from each of our domains, Security representative, the SAP Administrator, the Helpdesk manager and her highest level help desk representative. We were reviewing the related tickets that the helpdesk manager brought to the meeting. Below is the one, that had the meeting pause while everyone busted up laughing including the Helpdesk manager.</p>
<p>** PHONE LOG 10/24/2006 08:54:00 AM<br />
(Person Having the Problem): User’s Name<br />
(Department/Physical Location): building b, 2nd floor<br />
(Machine Name/IP Address): ComputerName<br />
(Switch &#8211; Blade/Port Information):<br />
User Name:<br />
Host Name: Computername.domain.local<br />
MAC Address: 12-34-56-78-90-11<br />
IP Address: xxx.xxx.xxx.xxx<br />
Subnet: xxx.xxx.xxx.xxx<br />
Switch: ClosetLocation xxx.xxx.xxx.xxx<br />
Port: 1/2<br />
Port State: static<br />
VLAN : VLAN NAME<br />
Port Speed : 100M<br />
Port Duplex : full-duplex<br />
Last Seen 2006/10/13 14:57:18<br />
(Top 2 Memory and CPU usage):<br />
(Application): everything<br />
(How Slow?): takes 2-3 minutes to open any application<br />
(Description of problem): when she first boots up the computer in the morning, it takes *forever* to open programs. this lasts for several minutes, then goes back to normal-speed for the rest of the day.<br />
(Time of Day/For how long): first thing in the morning<br />
(Is the Problem Reproducible): yup<br />
(Troubleshooting Steps Taken): told her it sounds like a combination of trying to open programs before the computer is all the way booted up, and virus scan loading and scanning files at bootup. <span style="text-decoration: underline;"><strong>advised her to boot up her computer, login, and then go get a cup of coffee to let the computer boot all the way before she tries to start her work in the morning.</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2006/11/01/helpdesk-hilarity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>T-Mobile Pearl 8100</title>
		<link>http://www.lopo.com/2006/09/12/t-mobile-pearl-8100/</link>
		<comments>http://www.lopo.com/2006/09/12/t-mobile-pearl-8100/#comments</comments>
		<pubDate>Wed, 13 Sep 2006 03:48:06 +0000</pubDate>
		<dc:creator>John B.</dc:creator>
				<category><![CDATA[BlackBerry]]></category>

		<guid isPermaLink="false">http://dev.lopo.com/?p=12</guid>
		<description><![CDATA[Tonight I picked up my new Blackberry Pearl(8100) by T-Mobile. I must say, having owned/used the Blackberry 5790, 6750, 7750,<a href="http://www.lopo.com/2006/09/12/t-mobile-pearl-8100/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Tonight I picked up my new Blackberry Pearl(8100) by T-Mobile. I must say, having owned/used the Blackberry 5790, 6750, 7750, 7250, 7130, 7520, 8700, and now the 8100 &#8211; the 8100 is my favorite.</p>
<p>This phone feels solid and feels right in your hand and on a call.</p>
<p>Tons of new features offered for the first time by Blackberry are:</p>
<ul>
<li> Voice Activated Dialing</li>
<li> Bluetooth GPS compatibility w/ Blackberry Maps</li>
<li> Trackball/joystick &#8211; no more traditional Trackwheel</li>
<li> New style themes, similar to Pocket PC’s “Today” Screen</li>
<li> A 1.3MP camera</li>
<li> Media player &#8211; Movies, MP3’s</li>
<li> Stereo Headset</li>
<li> Expandable Memory slot &#8211; MicroSD</li>
<li> MP3 Ringtones &#8211; currently available on the 8700.</li>
</ul>
<p>The phone came with OZ Instant Messaging Client. I’m not sure if this is a T-Mobile only included software or not. We’ll see when the Pearl comes out on Cingular sometime in November.</p>
<p>Check out a few pics:</p>
<p><img class="alignnone size-medium wp-image-14" title="091206-002" src="http://dev.lopo.com/wp-content/uploads/2009/10/091206-002-300x225.jpg" alt="091206-002" width="300" height="225" /><img class="alignnone size-medium wp-image-13" title="091206-001" src="http://dev.lopo.com/wp-content/uploads/2009/10/091206-001-300x225.jpg" alt="091206-001" width="300" height="225" /></p>
<p><img class="alignnone size-medium wp-image-15" title="091206-003" src="http://dev.lopo.com/wp-content/uploads/2009/10/091206-003-300x225.jpg" alt="091206-003" width="300" height="225" /><img class="alignnone size-medium wp-image-16" title="091206-004" src="http://dev.lopo.com/wp-content/uploads/2009/10/091206-004-225x300.jpg" alt="091206-004" width="225" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lopo.com/2006/09/12/t-mobile-pearl-8100/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
