<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>mylifeinaminute.com</title>
	
	<link>http://www.mylifeinaminute.com</link>
	<description>You can learn a lot in a minute</description>
	<lastBuildDate>Tue, 10 Nov 2009 19:43:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Mylifeinaminute" type="application/rss+xml" /><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2FMylifeinaminute" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FMylifeinaminute" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Ffeeds.feedburner.com%2FMylifeinaminute" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://feeds.feedburner.com/Mylifeinaminute" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2FMylifeinaminute" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FMylifeinaminute" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FMylifeinaminute" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Trimming MOSS Audit Logs</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/kJt5oosrgus/</link>
		<comments>http://www.mylifeinaminute.com/2009/11/10/trimming-moss-audit-logs/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 19:43:09 +0000</pubDate>
		<dc:creator>liquidpooled</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint documentation]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=415</guid>
		<description><![CDATA[The Audit Log in MOSS has the potential to become unruly if left to it&#8217;s own devices. If you have upgraded to at least the Infrastructure Update, a new stsadm command is available for trimming the audit logs (specifically the AuditData table in the content database). The command is trimauditlog.
Sample Usage:
stsadm -o trimauditlog -date 20090101 [...]]]></description>
			<content:encoded><![CDATA[<p>The Audit Log in MOSS has the potential to become unruly if left to it&#8217;s own devices. If you have upgraded to at least the Infrastructure Update, a new <strong><em>stsadm </em></strong>command is available for trimming the audit logs (specifically the AuditData table in the content database). The command is <strong><em>trimauditlog</em></strong>.</p>
<p>Sample Usage:</p>
<blockquote><p><em>stsadm -o trimauditlog -date 20090101 -databasename MyContentDB</em></p></blockquote>
<p>If you have auditing enabled and find yourself curious about the amount of space a particular table is consuming, the following script can help in finding the largest tables in a database:</p>
<pre class="brush: sql;">
/********************************************************************
*
*  BigTables.sql
*  Bill Graziano (SQLTeam.com)
*  graz@sqlteam.com
*  v1.1
*
********************************************************************/

declare @id	int
declare @type	character(2)
declare	@pages	int
declare @dbname sysname
declare @dbsize dec(15,0)
declare @bytesperpage	dec(15,0)
declare @pagesperMB		dec(15,0)

create table #spt_space
(
	objid		int null,
	rows		int null,
	reserved	dec(15) null,
	data		dec(15) null,
	indexp		dec(15) null,
	unused		dec(15) null
)

set nocount on

-- Create a cursor to loop through the user tables
declare c_tables cursor for
select	id
from	sysobjects
where	xtype = 'U'

open c_tables

fetch next from c_tables
into @id

while @@fetch_status = 0
begin

	/* Code from sp_spaceused */
	insert into #spt_space (objid, reserved)
		select objid = @id, sum(reserved)
			from sysindexes
				where indid in (0, 1, 255)
					and id = @id

	select @pages = sum(dpages)
			from sysindexes
				where indid &lt; 2
					and id = @id
	select @pages = @pages + isnull(sum(used), 0)
		from sysindexes
			where indid = 255
				and id = @id
	update #spt_space
		set data = @pages
	where objid = @id

	/* index: sum(used) where indid in (0, 1, 255) - data */
	update #spt_space
		set indexp = (select sum(used)
				from sysindexes
				where indid in (0, 1, 255)
				and id = @id)
			    - data
		where objid = @id

	/* unused: sum(reserved) - sum(used) where indid in (0, 1, 255) */
	update #spt_space
		set unused = reserved
				- (select sum(used)
					from sysindexes
						where indid in (0, 1, 255)
						and id = @id)
		where objid = @id

	update #spt_space
		set rows = i.rows
			from sysindexes i
				where i.indid &lt; 2
				and i.id = @id
				and objid = @id

	fetch next from c_tables
	into @id
end

select top 25
	Table_Name = (select left(name,25) from sysobjects where id = objid),
	rows = convert(char(11), rows),
	reserved_KB = ltrim(str(reserved * d.low / 1024.,15,0) + ' ' + 'KB'),
	data_KB = ltrim(str(data * d.low / 1024.,15,0) + ' ' + 'KB'),
	index_size_KB = ltrim(str(indexp * d.low / 1024.,15,0) + ' ' + 'KB'),
	unused_KB = ltrim(str(unused * d.low / 1024.,15,0) + ' ' + 'KB')

from 	#spt_space, master.dbo.spt_values d
where 	d.number = 1
and 	d.type = 'E'
order by reserved desc

drop table #spt_space
close c_tables
deallocate c_tables
</pre>
<p>Credit: <a title="Finding the biggest tables in a database" href="http://www.sqlteam.com/article/finding-the-biggest-tables-in-a-database">Finding the biggest tables in a database</a></p>
<p>For more information, see <a title="Trimauditlog: Stsadm operation (Office SharePoint Server)" href="http://technet.microsoft.com/en-us/library/cc706879.aspx">Trimauditlog: Stsadm operation (Office SharePoint Server)</a>.</p>
<p><map name='google_ad_map_415_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/415?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_415_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=415&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F11%2F10%2Ftrimming-moss-audit-logs%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/nPAWiiII3XuCF_HCSV1Or66Ss1w/0/da"><img src="http://feedads.g.doubleclick.net/~a/nPAWiiII3XuCF_HCSV1Or66Ss1w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nPAWiiII3XuCF_HCSV1Or66Ss1w/1/da"><img src="http://feedads.g.doubleclick.net/~a/nPAWiiII3XuCF_HCSV1Or66Ss1w/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/kJt5oosrgus" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/11/10/trimming-moss-audit-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/11/10/trimming-moss-audit-logs/</feedburner:origLink></item>
		<item>
		<title>User Profile Sync and Offline Content Databases</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/kyS5h0e2f68/</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>liquidpooled</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 without a [...]]]></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>
<p><a href="http://feedads.g.doubleclick.net/~a/hF1fyA9-p-qM5UHtiTjoruCwNmk/0/da"><img src="http://feedads.g.doubleclick.net/~a/hF1fyA9-p-qM5UHtiTjoruCwNmk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hF1fyA9-p-qM5UHtiTjoruCwNmk/1/da"><img src="http://feedads.g.doubleclick.net/~a/hF1fyA9-p-qM5UHtiTjoruCwNmk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/kyS5h0e2f68" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/11/10/user-profile-sync-and-offline-content-databases/</feedburner:origLink></item>
		<item>
		<title>Error Message: An existing request to enable the Enterprise feature is in progress</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/2xOG_uQAeDw/</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>liquidpooled</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 the [...]]]></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>
<p><a href="http://feedads.g.doubleclick.net/~a/BVrp3V-Djh16GCCCWXJMAoPWi1U/0/da"><img src="http://feedads.g.doubleclick.net/~a/BVrp3V-Djh16GCCCWXJMAoPWi1U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BVrp3V-Djh16GCCCWXJMAoPWi1U/1/da"><img src="http://feedads.g.doubleclick.net/~a/BVrp3V-Djh16GCCCWXJMAoPWi1U/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/2xOG_uQAeDw" height="1" width="1"/>]]></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>1</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/10/02/error-message-an-existing-request-to-enable-the-enterprise-feature-is-in-progress/</feedburner:origLink></item>
		<item>
		<title>A Manager’s Guide to SharePoint</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/3CxjL3eVUyg/</link>
		<comments>http://www.mylifeinaminute.com/2009/09/23/a-managers-guide-to-sharepoint/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 15:42:11 +0000</pubDate>
		<dc:creator>liquidpooled</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 documentation]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=404</guid>
		<description><![CDATA[The Acuff Group recently posted a whitepaper titled A Manager&#8217;s Guide to SharePoint [PDF] which makes for an interesting afternoon read.



]]></description>
			<content:encoded><![CDATA[<p><a title="The Acuff Group" href="http://acuffgroup.com/">The Acuff Group</a> recently posted a whitepaper titled <a title="A Manager's Guide to SharePoint" href="http://acuffgroup.com/2009/09/16/managers-guide-to-sharepoint/">A Manager&#8217;s Guide to SharePoint</a> [<a title="A Manager's Guide to SharePoint" href="http://acuffgroup.com/wp-content/uploads/2009/09/ManagersGuideToSharePoint_v1.pdf">PDF</a>] which makes for an interesting afternoon read.</p>
<p><map name='google_ad_map_404_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/404?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_404_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=404&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F09%2F23%2Fa-managers-guide-to-sharepoint%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/CX9BF33UqVdJgIrezgczGv6uXI4/0/da"><img src="http://feedads.g.doubleclick.net/~a/CX9BF33UqVdJgIrezgczGv6uXI4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/CX9BF33UqVdJgIrezgczGv6uXI4/1/da"><img src="http://feedads.g.doubleclick.net/~a/CX9BF33UqVdJgIrezgczGv6uXI4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/3CxjL3eVUyg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/09/23/a-managers-guide-to-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/09/23/a-managers-guide-to-sharepoint/</feedburner:origLink></item>
		<item>
		<title>SharePoint Solution Downloader</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/msYKwdhYWiQ/</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>liquidpooled</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"><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>
<p><a href="http://feedads.g.doubleclick.net/~a/82I5ipbwMUUa0XX2V9gQVKIPEqw/0/da"><img src="http://feedads.g.doubleclick.net/~a/82I5ipbwMUUa0XX2V9gQVKIPEqw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/82I5ipbwMUUa0XX2V9gQVKIPEqw/1/da"><img src="http://feedads.g.doubleclick.net/~a/82I5ipbwMUUa0XX2V9gQVKIPEqw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/msYKwdhYWiQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/08/21/sharepoint-solution-downloader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/08/21/sharepoint-solution-downloader/</feedburner:origLink></item>
		<item>
		<title>Netflix and Vista Media Center</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/IEYIOkQOiB0/</link>
		<comments>http://www.mylifeinaminute.com/2009/05/22/netflix-and-vista-media-center/#comments</comments>
		<pubDate>Sat, 23 May 2009 00:36:54 +0000</pubDate>
		<dc:creator>liquidpooled</dc:creator>
				<category><![CDATA[Media Center]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Netflix]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=393</guid>
		<description><![CDATA[Microsoft recently recently released/pushed out a new add-on for interacting with Netflix, allowing for the viewing of &#8220;instant&#8221; movies from within the Media Center 10ft. UI.

One quirk that you may run into is that videos are not playing after installation. You might need to break out the keyboard, as Silverlight will have opened a dialog [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Microsoft" href="/tag/microsoft/">Microsoft</a> recently recently released/pushed out a new add-on for interacting with <a title="Netflix" href="/tag/netflix/">Netflix</a>, allowing for the viewing of &#8220;instant&#8221; movies from within the Media Center 10ft. UI.</p>
<p style="text-align: center;"><a href="http://www.mylifeinaminute.com/images/2009/05/media_center_netflix.jpg" target="_blank"><img class="aligncenter" title="Netflix in Windows Media Center" src="http://www.mylifeinaminute.com/images/2009/05/media_center_netflix.jpg" alt="Netflix in Windows Media Center" /></a></p>
<p>One quirk that you may run into is that videos are not playing after installation. You might need to break out the keyboard, as Silverlight will have opened a dialog behind the Media Center window asking you to enable protected content. Once that hurdle is crossed, it should be smooth sailing.</p>
<p style="text-align: center;">
<iframe src="http://www.microsoft.com/video/en/us/player/embed/4661f505-6465-4fec-87a0-ae62d7f2d1f4" allowtransparency="true" width="430" height="326" scrolling="no" frameborder="0"></iframe><br /><a href="http://www.microsoft.com/video/en/us/details/4661f505-6465-4fec-87a0-ae62d7f2d1f4?vp_evt=eref&#038;vp_video=Netflix%20in%20Windows%20Media%20Center" >Netflix in Windows Media Center</a>
</p>
<p>[<a title="Microsoft Windows: Netflix in Windows Media Center" href="http://www.microsoft.com/windows/windows-media-center/netflix.aspx">Microsoft Windows: Netflix in Windows Media Center</a>]</p>
<p>[via <a title="Hacking Netflix" href="http://www.hackingnetflix.com/2009/05/microsoft-launches-official-netflix-media-center-streaming-application.html">Hacking Netflix</a>]</p>
<p><map name='google_ad_map_393_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/393?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_393_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=393&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F05%2F22%2Fnetflix-and-vista-media-center%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/Q-2NUo_PDYa8-eyIrzVBhJy8bPk/0/da"><img src="http://feedads.g.doubleclick.net/~a/Q-2NUo_PDYa8-eyIrzVBhJy8bPk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Q-2NUo_PDYa8-eyIrzVBhJy8bPk/1/da"><img src="http://feedads.g.doubleclick.net/~a/Q-2NUo_PDYa8-eyIrzVBhJy8bPk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/IEYIOkQOiB0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/05/22/netflix-and-vista-media-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/05/22/netflix-and-vista-media-center/</feedburner:origLink></item>
		<item>
		<title>SharePoint Audience Targeting Quirk</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/W70mryz1H_Y/</link>
		<comments>http://www.mylifeinaminute.com/2009/04/22/sharepoint-audience-targeting-quirk/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 15:00:13 +0000</pubDate>
		<dc:creator>liquidpooled</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[audience targeting]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint quirks]]></category>
		<category><![CDATA[web parts]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=389</guid>
		<description><![CDATA[I recently ran into a strange quirk/bug when setting a target audience on a web part. In the particular site collection where the web part resides, a number of cross-site groups exist.
For the sake of example, imagine that the site collection has several cross-site groups with simlar names. Ex:

IT
IT Designers
IT Administrators

When targeting the web part [...]]]></description>
			<content:encoded><![CDATA[<p>I recently ran into a strange quirk/bug when setting a target audience on a web part. In the particular site collection where the web part resides, a number of cross-site groups exist.</p>
<p>For the sake of example, imagine that the site collection has several cross-site groups with simlar names. Ex:</p>
<ul>
<li>IT</li>
<li>IT Designers</li>
<li>IT Administrators</li>
</ul>
<p>When targeting the web part to either the <em>IT Designers</em> or <em>IT Administrators</em> cross-site group, the web part is able to correctly apply the audience.  However, when the <em>IT</em> group is used, the web part configuration for audiences is unable to determine the correct group when the web part is rendered on the page.</p>
<p>It would appear that when selecting a target audience (if it is a SharePoint group), the group name must be unique and not contain a portion of another group name. In my case, while the <em>IT</em> group name is unique, the <em>IT Designers</em> and <em>IT Administrators</em> groups also contain the string &#8220;IT&#8221;.</p>
<p><map name='google_ad_map_389_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/389?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_389_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=389&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F04%2F22%2Fsharepoint-audience-targeting-quirk%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/AiO1nPOPxKlaYNol4WJpKU6UhHk/0/da"><img src="http://feedads.g.doubleclick.net/~a/AiO1nPOPxKlaYNol4WJpKU6UhHk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AiO1nPOPxKlaYNol4WJpKU6UhHk/1/da"><img src="http://feedads.g.doubleclick.net/~a/AiO1nPOPxKlaYNol4WJpKU6UhHk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/W70mryz1H_Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/04/22/sharepoint-audience-targeting-quirk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/04/22/sharepoint-audience-targeting-quirk/</feedburner:origLink></item>
		<item>
		<title>iTunes Rocks!</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/A3v3HuRHaWI/</link>
		<comments>http://www.mylifeinaminute.com/2009/04/21/itunes-rocks/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 21:59:08 +0000</pubDate>
		<dc:creator>liquidpooled</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[App Store]]></category>
		<category><![CDATA[iTunes Error]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=386</guid>
		<description><![CDATA[Just kidding. iTunes is still on my list of  most hated pieces of software due to the results such as the following:

If only I could find a way to buy apps when my iPhone is dead and I don&#8217;t want to wait to download them. It would be better yet if my iPhone could [...]]]></description>
			<content:encoded><![CDATA[<p>Just kidding. <a title="iTunes" href="/tag/itunes/">iTunes</a> is still on my list of <span style="text-decoration: line-through;"></span> most hated pieces of software due to the results such as the following:</p>
<p><a href="http://www.mylifeinaminute.com/images/2009/04/itunes_error.jpg" target="_blank"><img class="aligncenter size-medium wp-image-387" title="iTunes Error (-4)" src="http://www.mylifeinaminute.com/images/2009/04/itunes_error-300x124.jpg" alt="iTunes Error (-4)" width="300" height="124" /></a></p>
<p>If only I could find a way to buy apps when my <a title="iPhone" href="/tag/iphone/">iPhone</a> is dead and I don&#8217;t want to wait to download them. It would be better yet if my iPhone could make it through a full day of use without needing a recharge.</p>
<p><map name='google_ad_map_386_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/386?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_386_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=386&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F04%2F21%2Fitunes-rocks%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/guRM7A1uqLxpfGI7Eu6dj-V4pXs/0/da"><img src="http://feedads.g.doubleclick.net/~a/guRM7A1uqLxpfGI7Eu6dj-V4pXs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/guRM7A1uqLxpfGI7Eu6dj-V4pXs/1/da"><img src="http://feedads.g.doubleclick.net/~a/guRM7A1uqLxpfGI7Eu6dj-V4pXs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/A3v3HuRHaWI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/04/21/itunes-rocks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/04/21/itunes-rocks/</feedburner:origLink></item>
		<item>
		<title>SharePoint Designer – The Cat Is Out of the Bag</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/QHxCUUqon_s/</link>
		<comments>http://www.mylifeinaminute.com/2009/04/02/sharepoint-designer-the-cat-is-out-of-the-bag/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 12:20:17 +0000</pubDate>
		<dc:creator>liquidpooled</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[SharePoint Designer]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Windows SharePoint Services]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=360</guid>
		<description><![CDATA[Today marks the official release of SharePoint Designer as a free product offering from Microsoft.  While overall, this announcement can certainly be considered a good thing by the SharePoint community (who doesn&#8217;t like free stuff?), as a SharePoint &#8220;administrator&#8221; it makes me cringe. It is a good thing all of us have &#8220;locked down&#8221; SharePoint [...]]]></description>
			<content:encoded><![CDATA[<p>Today marks the official release of <a title="SharePoint Designer Home Page" href="http://office.microsoft.com/en-us/sharepointdesigner/default.aspx?ofcresset=1">SharePoint Designer</a> as a free product offering from <a title="Microsoft" href="/tag/microsoft/">Microsoft</a>.  While overall, this announcement can certainly be considered a good thing by the <a title="SharePoint" href="/tag/sharepoint/">SharePoint </a>community (who doesn&#8217;t like free stuff?), as a SharePoint &#8220;administrator&#8221; it makes me cringe. It is a good thing all of us have &#8220;<a title="Locking Down SharePoint Designer" href="http://blogs.msdn.com/sharepointdesigner/archive/2008/11/25/locking-down-sharepoint-designer.aspx">locked down</a>&#8221; <a title="SharePoint Designer" href="/tag/sharepoint-designer/">SharePoint Designer</a> in our respective environments.</p>
<p><a title="SharePoint Designer Home Page" href="http://office.microsoft.com/en-us/sharepointdesigner/default.aspx?ofcresset=1"><img class="aligncenter size-medium wp-image-361" title="SharePoint Designer Now Free" src="http://www.mylifeinaminute.com/images/2009/04/spdesigner_free-300x125.jpg" alt="SharePoint Designer Now Free" width="300" height="125" /></a></p>
<p>You did remember to <a title="Locking Down SharePoint Designer" href="http://blogs.msdn.com/sharepointdesigner/archive/2008/11/25/locking-down-sharepoint-designer.aspx">lock down</a>, didn&#8217;t you?</p>
<p>[<a title="Download SharePoint Designer" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=baa3ad86-bfc1-4bd4-9812-d9e710d44f42">Download</a>]</p>
<p><map name='google_ad_map_360_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/360?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_360_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=360&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F04%2F02%2Fsharepoint-designer-the-cat-is-out-of-the-bag%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/yrWcBIrBF-qLChPJ0-AasFB3NB4/0/da"><img src="http://feedads.g.doubleclick.net/~a/yrWcBIrBF-qLChPJ0-AasFB3NB4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yrWcBIrBF-qLChPJ0-AasFB3NB4/1/da"><img src="http://feedads.g.doubleclick.net/~a/yrWcBIrBF-qLChPJ0-AasFB3NB4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/QHxCUUqon_s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/04/02/sharepoint-designer-the-cat-is-out-of-the-bag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/04/02/sharepoint-designer-the-cat-is-out-of-the-bag/</feedburner:origLink></item>
		<item>
		<title>All I want to do is read a KB article…</title>
		<link>http://feedproxy.google.com/~r/Mylifeinaminute/~3/v-3C75Orh0E/</link>
		<comments>http://www.mylifeinaminute.com/2009/03/27/all-i-want-to-do-is-read-a-kb-article/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 00:56:29 +0000</pubDate>
		<dc:creator>liquidpooled</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=356</guid>
		<description><![CDATA[All I wanted to do was access a particular KB (http://support.microsoft.com/kb/940958).  However, Microsoft has other plans for me.  Apparently I&#8217;ve chosen the most popular KB of all time.




]]></description>
			<content:encoded><![CDATA[<p>All I wanted to do was access a particular KB (<a title="KB 940958" href="http://support.microsoft.com/kb/940958">http://support.microsoft.com/kb/940958</a>).  However, Microsoft has other plans for me.  Apparently I&#8217;ve chosen the most popular KB of all time.</p>
<p style="text-align: center;"><a title="Server is too busy" href="http://www.mylifeinaminute.com/images/2009/03/picture-1.jpg"><img class="aligncenter size-medium wp-image-357" title="KB Unavailable" src="http://www.mylifeinaminute.com/images/2009/03/picture-1-300x93.jpg" alt="KB Unavailable" width="300" height="93" /></a></p>
<p><map name='google_ad_map_356_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/356?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_356_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=356&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F03%2F27%2Fall-i-want-to-do-is-read-a-kb-article%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/Do-1poDYnYzS5_b1AGo4DkQ6we0/0/da"><img src="http://feedads.g.doubleclick.net/~a/Do-1poDYnYzS5_b1AGo4DkQ6we0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Do-1poDYnYzS5_b1AGo4DkQ6we0/1/da"><img src="http://feedads.g.doubleclick.net/~a/Do-1poDYnYzS5_b1AGo4DkQ6we0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Mylifeinaminute/~4/v-3C75Orh0E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/03/27/all-i-want-to-do-is-read-a-kb-article/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mylifeinaminute.com/2009/03/27/all-i-want-to-do-is-read-a-kb-article/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 3.224 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-14 07:05:02 -->
