<?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>mylifeinaminute.com &#187; sharepoint administration</title>
	<atom:link href="http://www.mylifeinaminute.com/tag/sharepoint-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mylifeinaminute.com</link>
	<description>You can learn a lot in a minute</description>
	<lastBuildDate>Wed, 18 Jan 2012 02:33:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SharePoint 2007 PowerShell Profile</title>
		<link>http://www.mylifeinaminute.com/2011/02/16/sharepoint-2007-powershell-profile/</link>
		<comments>http://www.mylifeinaminute.com/2011/02/16/sharepoint-2007-powershell-profile/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 18:32:09 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[sharepoint administration]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=677</guid>
		<description><![CDATA[The following is the Powershell profile that I have been using on the SharePoint 2007 farms I administer. Reference Getting started with PowerShell and SharePoint]]></description>
			<content:encoded><![CDATA[<p>The following is the <a title="PowerShell" href="/category/microsoft/powershell/">Powershell</a> <a title="Windows PowerShell Profiles" href="http://msdn.microsoft.com/en-us/library/bb613488(v=vs.85).aspx">profile</a> that I have been using on the SharePoint 2007 farms I administer.</p>
<pre class="brush: powershell; title: ; notranslate">
############################################################################
# Assumptions:
# - Running on machine with WSS/MOSS
# - C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN in path
# - For development servers only, does not dispose of objects
############################################################################
# Example usage:
# $list = get-splist -webUrl &quot;http://site&quot; -listName &quot;Announcements&quot;
############################################################################

$12HiveDir = &quot;${env:CommonProgramFiles}\Microsoft Shared\web server extensions\12\&quot;

[void][reflection.assembly]::Loadwithpartialname(&quot;Microsoft.SharePoint&quot;) | out-null
[void][reflection.assembly]::Loadwithpartialname(&quot;Microsoft.Office.Server.Search&quot;) | out-null
[void][reflection.assembly]::Loadwithpartialname(&quot;Microsoft.Office.Server&quot;) | out-null

# Returns the SPWebApplication at the specified URL
function get-spwebapplication ([String]$webUrl=$(throw 'Parameter -webUrl is missing!'))
{
    return [Microsoft.SharePoint.Administration.SPWebApplication]::Lookup(&quot;$webUrl&quot;)
}

# Returns the SPSite at the specified URL
function get-spsite ([String]$webUrl=$(throw 'Parameter -webUrl is missing!'))
{
    return New-Object -TypeName &quot;Microsoft.SharePoint.SPSite&quot; -ArgumentList &quot;$webUrl&quot;
}

# Returns the SPSite object from the specified URL
function get-spweb ([String]$webUrl=$(throw 'Parameter -webUrl is missing!'))
{
    $site = New-Object -TypeName &quot;Microsoft.SharePoint.SPSite&quot; -ArgumentList &quot;$webUrl&quot;
    return $site.OpenWeb()
}

# Returns the SPList object from the specified URL and list name
function get-splist ([String]$webUrl=$(throw 'Parameter -webUrl is missing!'),
[String]$listName=$(throw 'Parameter -listName is missing!'))
{
    $site = New-Object -TypeName &quot;Microsoft.SharePoint.SPSite&quot; -ArgumentList &quot;$webUrl&quot;
    $web = $site.OpenWeb()
    return $web.Lists[$listName]
}
</pre>
<h4>Reference</h4>
<ul>
<li><a title="Getting started with PowerShell and SharePoint" href="http://www.sharepointdevwiki.com/display/public/Getting+started+with+PowerShell+and+SharePoint">Getting started with PowerShell and SharePoint</a></li>
</ul>
<p><map name='google_ad_map_677_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/677?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_677_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=677&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2011%2F02%2F16%2Fsharepoint-2007-powershell-profile%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2011/02/16/sharepoint-2007-powershell-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Users Not Found in People Pickers</title>
		<link>http://www.mylifeinaminute.com/2010/11/12/users-not-found-in-people-pickers/</link>
		<comments>http://www.mylifeinaminute.com/2010/11/12/users-not-found-in-people-pickers/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 18:31:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Windows SharePoint Services]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[sharepoint administration]]></category>
		<category><![CDATA[SharePoint Profile Management]]></category>
		<category><![CDATA[sharepoint quirks]]></category>
		<category><![CDATA[SharePoint User Management]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=604</guid>
		<description><![CDATA[Ah yes, the people picker again. I recently inherited an environment where the previous administrator was kind enough to not document anything, especially the items he/she had been playing with in development. When trying to designate a user as a Primary Site Collection Administrator in Central Administration, I was unable to query for subsets of [...]]]></description>
			<content:encoded><![CDATA[<p>Ah yes, the people picker again. I recently inherited an environment where the previous administrator was kind enough to not document anything, especially the items he/she had been playing with in development.</p>
<p>When trying to designate a user as a Primary Site Collection Administrator in Central Administration, I was unable to query for subsets of domain users on a single web application. After checking all of the usual suspects (<a title="Peoplepicker-searchadforests" href="http://technet.microsoft.com/en-us/library/cc263460(office.12).aspx">Peoplepicker-searchadforests</a> I&#8217;m looking at you) with no success, it was off to the not-so-usual suspects.</p>
<p>It turns out the previous admin was kind enough to set the <a title="Peoplepicker-searchadcustomfilter" href="http://technet.microsoft.com/en-us/library/cc263452(office.12).aspx">Peoplepicker-searchadcustomfilter</a> property on the main portal site collection. After setting the property to <em>null</em></p>
<pre class="brush: plain; title: ; notranslate">
stsadm -o setproperty -pn peoplepicker-searchadcustomfilter -pv &quot;&quot; -url [URL]
</pre>
<p>all was once again right with the world. </p>
<p>Now where did I leave my sledgehammer?</p>
<p><map name='google_ad_map_604_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/604?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_604_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=604&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2010%2F11%2F12%2Fusers-not-found-in-people-pickers%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2010/11/12/users-not-found-in-people-pickers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User Profile Sync and Offline Content Databases</title>
		<link>http://www.mylifeinaminute.com/2009/11/10/user-profile-sync-and-offline-content-databases/</link>
		<comments>http://www.mylifeinaminute.com/2009/11/10/user-profile-sync-and-offline-content-databases/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:48:02 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint administration]]></category>
		<category><![CDATA[SharePoint Profile Management]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=412</guid>
		<description><![CDATA[After a recent farm migration, a number of content databases were left offline. This had the unintended consequence of not allowing user profile synchronization to occur across site collections (where the content databases were offline). The quick fix? Bring the content database(s) online. The moral of the story? Do not leave your content database(s) offline [...]]]></description>
			<content:encoded><![CDATA[<p>After a recent farm migration, a number of content databases were left offline. This had the unintended consequence of not allowing user profile synchronization to occur across site collections (where the content databases were offline).</p>
<p>The quick fix? Bring the content database(s) online.</p>
<p>The moral of the story? Do not leave your content database(s) offline without a good reason. If you do leave them offline, User Information Lists in the offline site collections will not be synchronized with the SSP.</p>
<p><map name='google_ad_map_412_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/412?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_412_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=412&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F11%2F10%2Fuser-profile-sync-and-offline-content-databases%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/11/10/user-profile-sync-and-offline-content-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error Message: An existing request to enable the Enterprise feature is in progress</title>
		<link>http://www.mylifeinaminute.com/2009/10/02/error-message-an-existing-request-to-enable-the-enterprise-feature-is-in-progress/</link>
		<comments>http://www.mylifeinaminute.com/2009/10/02/error-message-an-existing-request-to-enable-the-enterprise-feature-is-in-progress/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 11:29:06 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint administration]]></category>
		<category><![CDATA[sharepoint quirks]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=409</guid>
		<description><![CDATA[When upgrading from a standard SKU to an Enterprise SKU in SharePoint (MOSS 2007), things can (and do) go wrong. Come to think of it, I&#8217;ve never seen one complete successfully without some type of manual intervention. Fortunately, the majority of errors that are experienced are recoverable. Take for instance: An existing request to enable [...]]]></description>
			<content:encoded><![CDATA[<p>When upgrading from a standard SKU to an Enterprise SKU in SharePoint (MOSS 2007), things can (and do) go wrong. Come to think of it, I&#8217;ve never seen one complete successfully without some type of manual intervention. Fortunately, the majority of errors that are experienced are recoverable. Take for instance:</p>
<blockquote><p><strong><span style="color: red;">An existing request to enable the Enterprise feature is in progress. To check the status of this request, go to the Timer Job Status page in Central Administration Operations and check the status of the Office Server Enterprise Features Upgrade Job.</span></strong></p></blockquote>
<p>When you find the job in the Timer Job Status page, you will see that it needs to run on all servers in your farm. Chances are it has failed on one (or more) servers. The quick fix? Restart (or start if stopped) the Windows SharePoint Services Timer service on the server where the upgrade job failed. After the job has completed, return to Central Administration to verify that your farm has been upgraded.</p>
<p><map name='google_ad_map_409_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/409?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_409_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=409&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F10%2F02%2Ferror-message-an-existing-request-to-enable-the-enterprise-feature-is-in-progress%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/10/02/error-message-an-existing-request-to-enable-the-enterprise-feature-is-in-progress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SharePoint Solution Downloader</title>
		<link>http://www.mylifeinaminute.com/2009/08/21/sharepoint-solution-downloader/</link>
		<comments>http://www.mylifeinaminute.com/2009/08/21/sharepoint-solution-downloader/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 22:22:24 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[Windows SharePoint Services]]></category>
		<category><![CDATA[codeplex]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint administration]]></category>
		<category><![CDATA[SharePoint Solution Packages]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=401</guid>
		<description><![CDATA[One of my pain points as a SharePoint &#8220;administrator&#8221; is having to deal with deployments of solution packages to my environment without the best change management. This means that I often see packages making their way in to the environment without any thought given to keeping the package in case it needs to be reapplied [...]]]></description>
			<content:encoded><![CDATA[<p>One of my pain points as a SharePoint &#8220;administrator&#8221; is having to deal with deployments of solution packages to my environment without the best change management. This means that I often see packages making their way in to the environment without any thought given to keeping the package in case it needs to be reapplied at a later time (Note: I&#8217;m not the only one who controls what goes into the environment).</p>
<p>The solution? I whipped up a Windows application so download one, several, or all of the solution packages currently stored in the farm configuration database.</p>
<p>I have posted the application to <a title="SharePoint Solution Downloader" href="http://spsolutiondownloader.codeplex.com/">CodePlex</a> @ <a title="SharePoint Solution Downloader" href="http://spsolutiondownloader.codeplex.com/">http://spsolutiondownloader.codeplex.com/</a>.</p>
<p style="text-align: center;"><a href="/images/2009/08/spdownloader_download.jpg" target="_blank" rel="lightbox[401]"><img class="aligncenter size-medium wp-image-402" title="SharePoint Solution Downloader" src="http://www.mylifeinaminute.com/images/2009/08/spdownloader_download-300x155.jpg" alt="SharePoint Solution Downloader" width="300" height="155" /></a></p>
<p>The application must be run in the context of a Farm Administrator (i.e. right-click, <em>Run As&#8230;</em>) on a server in the farm for which you wish to download the solution package(s) from and requires the .NET Framework 3.5.</p>
<p>I would love some feedback from the community as to whether or not this useful. I have some other little apps in mind I could put together with the proper motivation.</p>
<p><map name='google_ad_map_401_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/401?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_401_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=401&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F08%2F21%2Fsharepoint-solution-downloader%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/08/21/sharepoint-solution-downloader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tools for your SharePoint Toolbox: SPTraceView</title>
		<link>http://www.mylifeinaminute.com/2009/01/20/tools-for-your-sharepoint-toolbox-sptraceview/</link>
		<comments>http://www.mylifeinaminute.com/2009/01/20/tools-for-your-sharepoint-toolbox-sptraceview/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 18:58:18 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Windows SharePoint Services]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint administration]]></category>
		<category><![CDATA[SPTraceView]]></category>
		<category><![CDATA[Unified Logging Service]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=307</guid>
		<description><![CDATA[SPTraceView (by Hristo Pavlov) is a tool which allows a user (with console and/or RDP access to a SharePoint server) to view the trace logs for SharePoint in real time. Parsing through ULS logs can be a tedious process, but being able to see the events as they occur certainly makes it much more palatable. [...]]]></description>
			<content:encoded><![CDATA[<p><a title="SPTraceView" href="http://hristopavlov.wordpress.com/2008/06/19/sptraceview-lightweight-tool-for-monitoring-the-sharepoint-diagnostic-logging-in-real-time/">SPTraceView</a> (by <a title="Hristo Pavlov" href="http://hristopavlov.wordpress.com/">Hristo Pavlov</a>) is a tool which allows a user (with console and/or RDP access to a SharePoint server) to view the trace logs for SharePoint in real time. Parsing through ULS logs can be a tedious process, but being able to see the events as they occur certainly makes it much more palatable.</p>
<p><a title="SPTraceView" href="http://hristopavlov.wordpress.com/2008/06/19/sptraceview-lightweight-tool-for-monitoring-the-sharepoint-diagnostic-logging-in-real-time/">SPTraceView</a> can be used in either a single server or a farm scenario, although a farm does require some configuration.</p>
<p><map name='google_ad_map_307_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/307?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_307_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=307&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F01%2F20%2Ftools-for-your-sharepoint-toolbox-sptraceview%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/01/20/tools-for-your-sharepoint-toolbox-sptraceview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bamboo Solutions SharePoint Analyzer</title>
		<link>http://www.mylifeinaminute.com/2008/12/23/bamboo-solutions-sharepoint-analyzer/</link>
		<comments>http://www.mylifeinaminute.com/2008/12/23/bamboo-solutions-sharepoint-analyzer/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 21:13:24 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Windows SharePoint Services]]></category>
		<category><![CDATA[bamboo solutions]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint administration]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=268</guid>
		<description><![CDATA[The Bamboo Team has just released an update to their SharePoint Analyzer. If you administer a SharePoint farm, it is definitely worth evaluating. Did I mention that it is currently free? Go get it.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://community.bamboosolutions.com/blogs/bambooteamblog/default.aspx" title="The Bamboo Team Blog">Bamboo Team</a> has just released an update to their <a href="http://community.bamboosolutions.com/blogs/bambooteamblog/archive/2008/11/07/introducing-bamboo-sharepoint-analyzer.aspx" "Bamboo SharePoint Analyzer">SharePoint Analyzer</a>.  If you administer a SharePoint farm, it is definitely worth evaluating.</p>
<p>Did I mention that it is currently free? <a href="http://community.bamboosolutions.com/media/p/7160.aspx" title="SharePoint Analyzer 1.1 Download">Go get it</a>.</p>
<p><map name='google_ad_map_268_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/268?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_268_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=268&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2008%2F12%2F23%2Fbamboo-solutions-sharepoint-analyzer%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2008/12/23/bamboo-solutions-sharepoint-analyzer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.mylifeinaminute.com @ 2012-02-05 08:49:07 by W3 Total Cache -->
