<?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>Sytone&#039;s Ramblings &#187; admin</title>
	<atom:link href="http://www.sytone.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sytone.com</link>
	<description>Me, Family, Life</description>
	<lastBuildDate>Sun, 20 Nov 2011 05:29:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Getting a Outlook MailItem from a Ribbon Event</title>
		<link>http://www.sytone.com/2010/02/getting-a-outlook-mailitem-from-a-ribbon-event/</link>
		<comments>http://www.sytone.com/2010/02/getting-a-outlook-mailitem-from-a-ribbon-event/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 10:01:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=167</guid>
		<description><![CDATA[ <p>You may find this code block handy:</p> /// /// Gets the mail item selected in the explorer view if one is selected or instance if that is the view active. /// /// The instance containing the event data. /// A Outlook.MailItem for the mail being viewed. private Outlook.MailItem GetMailItem(RibbonControlEventArgs e) { // Check to [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2010%2F02%2Fgetting-a-outlook-mailitem-from-a-ribbon-event%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2010%2F02%2Fgetting-a-outlook-mailitem-from-a-ribbon-event%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>You may find this code block handy:</p>
<pre class="brush:csharp">        ///
        /// Gets the mail item selected in the explorer view if one is selected or instance if that is the view active.
        ///
        ///
The  instance containing the event data.
        /// A Outlook.MailItem for the mail being viewed.
        private Outlook.MailItem GetMailItem(RibbonControlEventArgs e)
        {
            // Check to see if a item is select in explorer or we are in inspector.
            if (e.Control.Context is Outlook.Inspector)
            {
                Outlook.Inspector inspector = (Outlook.Inspector)e.Control.Context;

                if (inspector.CurrentItem is Outlook.MailItem)
                {
                    return inspector.CurrentItem as Outlook.MailItem;
                }
            }

            if (e.Control.Context is Outlook.Explorer)
            {
                Outlook.Explorer explorer = (Outlook.Explorer)e.Control.Context;

                Outlook.Selection selectedItems = explorer.Selection;
                if (selectedItems.Count != 1)
                {
                    return null;
                }

                if (selectedItems[1] is Outlook.MailItem)
                {
                    return selectedItems[1] as Outlook.MailItem;
                }
            }

            return null;
        }</pre>
<div class="shr-publisher-167"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F02%2Fgetting-a-outlook-mailitem-from-a-ribbon-event%2F' data-shr_title='Getting+a+Outlook+MailItem+from+a+Ribbon+Event'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F02%2Fgetting-a-outlook-mailitem-from-a-ribbon-event%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F02%2Fgetting-a-outlook-mailitem-from-a-ribbon-event%2F' data-shr_title='Getting+a+Outlook+MailItem+from+a+Ribbon+Event'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2010/02/getting-a-outlook-mailitem-from-a-ribbon-event/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bing search cache for the win.</title>
		<link>http://www.sytone.com/2009/10/bing-search-cache-for-the-win/</link>
		<comments>http://www.sytone.com/2009/10/bing-search-cache-for-the-win/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 12:47:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=133</guid>
		<description><![CDATA[ <p>I managed to find a old sql backup of my site so the articles are back, still have to upload the code stuff. Bing was a nice help in being able to re-create recent articles using its cached copy. Will hit google later to see if there are any others I want. </p> ]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fbing-search-cache-for-the-win%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fbing-search-cache-for-the-win%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I managed to find a old sql backup of my site so the articles are back, still have to upload the code stuff. Bing was a nice help in being able to re-create recent articles using its cached copy. Will hit google later to see if there are any others I want. </p>
<div class="shr-publisher-133"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fbing-search-cache-for-the-win%2F' data-shr_title='Bing+search+cache+for+the+win.'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fbing-search-cache-for-the-win%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fbing-search-cache-for-the-win%2F' data-shr_title='Bing+search+cache+for+the+win.'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2009/10/bing-search-cache-for-the-win/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solidinternet is dead&#8230; along with my content&#8230;</title>
		<link>http://www.sytone.com/2009/10/solidinternet-is-dead-along-with-my-content/</link>
		<comments>http://www.sytone.com/2009/10/solidinternet-is-dead-along-with-my-content/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 00:19:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://sytone.com/?p=3</guid>
		<description><![CDATA[ <p>They are not responding and the servers are down, I have a continual ping setup in the vain hope the server may come up long enough to backup my files. Very Very Annoying. </p> ]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fsolidinternet-is-dead-along-with-my-content%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fsolidinternet-is-dead-along-with-my-content%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>They are not responding and the servers are down, I have a continual ping setup in the vain hope the server may come up long enough to backup my files. Very Very Annoying. </p>
<div class="shr-publisher-3"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fsolidinternet-is-dead-along-with-my-content%2F' data-shr_title='Solidinternet+is+dead...+along+with+my+content...'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fsolidinternet-is-dead-along-with-my-content%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F10%2Fsolidinternet-is-dead-along-with-my-content%2F' data-shr_title='Solidinternet+is+dead...+along+with+my+content...'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2009/10/solidinternet-is-dead-along-with-my-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for Objects in the SharePoint Deployment failed log.</title>
		<link>http://www.sytone.com/2009/04/looking-for-objects-in-the-sharepoint-deployment-failed-log/</link>
		<comments>http://www.sytone.com/2009/04/looking-for-objects-in-the-sharepoint-deployment-failed-log/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 12:42:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Content Deployment]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=129</guid>
		<description><![CDATA[ <p>SharePoint Content Deployment can be a fun beast at times, this article will walk you through a approach for resolving issues.</p> <p>While working with a client we had the following error in a incremental job:</p> The object has been updated by another user since it was last fetched <p>Since the client was not [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F04%2Flooking-for-objects-in-the-sharepoint-deployment-failed-log%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F04%2Flooking-for-objects-in-the-sharepoint-deployment-failed-log%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>SharePoint Content Deployment can be a fun beast at times, this article will walk you through a approach for resolving issues.</p>
<p>While working with a client we had the following error in a incremental job:</p>
<pre>The object has been updated by another user since it was last fetched</pre>
<p>Since the client was not on the latest patch level and unable to patch at this point in time I want to see if I could resolve it out manually. The problem was I dod not know which site they had edited and replaced the default page on.</p>
<p>Running the job it was failing at object 1829, being the lovely SharePoint that it is I have no way to workout what object is at 1829… or do I?</p>
<p>If you have the system setup to leave the failed cabs on the destination server you can open them up and look for the Manifest.xml files. Once you have these copy them to a place on the system.</p>
<p>The following powershell commands will allow you to find the object that it stopped on so you can resolve it, delete it or recreate it.</p>
<pre>PS C:\&gt; $man1 = get-content .\Manifest.xml
PS C:\&gt; $man2 = get-content .\Manifest1.xml
PS C:\&gt; $man1.SPObjects.SPObject[1829]</pre>
<pre>Id              : 2f93cb16-fae5-4344-8549-3f6c5de60863
ObjectType      : SPDocumentLibrary
ParentId        : b677f641-222c-4185-9cf4-e916174b316b
ParentWebId     : b677f641-222c-4185-9cf4-e916174b316b
ParentWebUrl    : /SiteCollection/SubSite
Url             : /SiteCollection/SubSite/Pages
DocumentLibrary : DocumentLibrary</pre>
<div class="shr-publisher-129"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F04%2Flooking-for-objects-in-the-sharepoint-deployment-failed-log%2F' data-shr_title='Looking+for+Objects+in+the+SharePoint+Deployment+failed+log.'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F04%2Flooking-for-objects-in-the-sharepoint-deployment-failed-log%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F04%2Flooking-for-objects-in-the-sharepoint-deployment-failed-log%2F' data-shr_title='Looking+for+Objects+in+the+SharePoint+Deployment+failed+log.'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2009/04/looking-for-objects-in-the-sharepoint-deployment-failed-log/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paper Folding: How to Make a Paper Chatterbox</title>
		<link>http://www.sytone.com/2009/03/paper-folding-how-to-make-a-paper-chatterbox/</link>
		<comments>http://www.sytone.com/2009/03/paper-folding-how-to-make-a-paper-chatterbox/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 12:45:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[paper]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=131</guid>
		<description><![CDATA[ <p>One for the kids big and small</p> <p>http://www.ehow.com/how_4460565_make-paper-chatterbox.html</p> ]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fpaper-folding-how-to-make-a-paper-chatterbox%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fpaper-folding-how-to-make-a-paper-chatterbox%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>One for the kids big and small</p>
<p>http://www.ehow.com/how_4460565_make-paper-chatterbox.html</p>
<div class="shr-publisher-131"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fpaper-folding-how-to-make-a-paper-chatterbox%2F' data-shr_title='Paper+Folding%3A+How+to+Make+a+Paper+Chatterbox'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fpaper-folding-how-to-make-a-paper-chatterbox%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fpaper-folding-how-to-make-a-paper-chatterbox%2F' data-shr_title='Paper+Folding%3A+How+to+Make+a+Paper+Chatterbox'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2009/03/paper-folding-how-to-make-a-paper-chatterbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contacts in Outlook and SharePoint</title>
		<link>http://www.sytone.com/2009/03/contacts-in-outlook-and-sharepoint/</link>
		<comments>http://www.sytone.com/2009/03/contacts-in-outlook-and-sharepoint/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 12:29:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=121</guid>
		<description><![CDATA[ <p>By default the contact content type in SharePoint does not have all the fields that the contact item in Outlook has, however the site columns by default have the majority of columns in existence.</p> <p>I have made the assumption that they did not include them all as this would have made the contacts [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fcontacts-in-outlook-and-sharepoint%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fcontacts-in-outlook-and-sharepoint%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>By default the contact content type in SharePoint does not have all the fields that the contact item in Outlook has, however the site columns by default have the majority of columns in existence.</p>
<p>I have made the assumption that they did not include them all as this would have made the contacts page massive for entry, but as I am using a contacts list on SharePoint as a family contact list (So I and my wife can share contacts) I needed to beef it up.</p>
<p>This article will walk you through the addition of the contact items to a new contact content type called Outlook Contact.</p>
<ol>
<li>On your site go to Site Actions -&gt; Site Settings</li>
<li>Under Galleries select Site content types</li>
<li>Under List Content Types you will see the Contact content type. Have a look at this now so you can see what columns are there by default.</li>
<li>We are not going to modify the existing Contact item as it may be in use by other Content types of people on the site. So to create a new content type do the following.</li>
<li>Select Create.</li>
<li>Name it Outlook Contact</li>
<li>Put this in the description This is a complete outlook contact type with all columns.</li>
<li>Select parent content type from List Content Types</li>
<li>Select Parent Content Type as Contact</li>
<li>Place it into a existing group List Content Types</li>
<li>Now you have a new Site Content Type and it has the same list of columns as the Contact content type.</li>
<li>Add the following existing site columns to this new content type.
<ul>
<li>Middle Name</li>
<li>Suffix</li>
<li>E-mail 2</li>
<li>E-mail 3</li>
<li>IM Address</li>
<li>Assistant’s Phone</li>
<li>Business Phone 2</li>
<li>Callback Number</li>
<li>Car Phone</li>
<li>Company Main Phone</li>
<li>Home Phone 2</li>
<li>Home Fax</li>
<li>ISDN</li>
<li>Other Phone</li>
<li>Other Fax</li>
<li>Pager</li>
<li>Primary Phone</li>
<li>Radio Phone</li>
<li>Telex</li>
<li>TTY-TDD Phone</li>
<li>Home Address City</li>
<li>Home Address Country</li>
<li>Home Address Postal Code</li>
<li>Home Address State Or Province</li>
<li>Home Address Street</li>
<li>Other Address City</li>
<li>Other Address Country</li>
<li>Other Address Postal Code</li>
<li>Other Address State Or Province</li>
<li>Other Address Street</li>
<li>Contact Photo</li>
<li>Department</li>
<li>Office</li>
<li>Profession</li>
<li>Nickname</li>
<li>Anniversary</li>
<li>Assistant’s Name</li>
<li>Birthday</li>
<li>Manager’s Name</li>
<li>Spouse</li>
</ul>
</li>
<li>Click on OK and the added columns will be saved to the content type.</li>
<li>You can play with the order if you so wish but as you will be using this with outlook the web interface is not that important.</li>
<li>Now create a new list with this content type.</li>
<li>Site Actions -&gt; Create</li>
<li>Communications -&gt; Contacts</li>
<li>Give it a Name and description, for this example I used Family Contacts</li>
<li>Once created you need to edit the properties of the list, open Settings and select List Settings.</li>
<li>Under General Settings select Advanced settings and changeAllow management of content types? to Yes then click on OK</li>
<li>You should now see a new section called Content Types with the default Contact content type in it, we will now add in the Outlook Contact content type and remove the Contact content type.</li>
<li>Select Add from existing site content types, select the List Content Type and click on Outlook Contact and Add, then click on OK.</li>
<li>In the Content Type list click on Contact and under Settings select Delete this content type. This will remove it from the list not from the site.</li>
<li>Nearly done now, go back to the list and under Actions select Connect to Outlook</li>
<li>Once the contact list is linked (Outlook 2007 required) you can add a contact and it will sync with the SharePoint list with all details. Done!</li>
</ol>
<ul>Default Contact Columns</p>
<p><a href="http://www.sytone.com/wp-content/images/ContactsinOutlookandSharePoint_8722/clip_image001.png" rel="lightbox[121]"></a></ul>
<div class="shr-publisher-121"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fcontacts-in-outlook-and-sharepoint%2F' data-shr_title='Contacts+in+Outlook+and+SharePoint'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fcontacts-in-outlook-and-sharepoint%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F03%2Fcontacts-in-outlook-and-sharepoint%2F' data-shr_title='Contacts+in+Outlook+and+SharePoint'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2009/03/contacts-in-outlook-and-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Candy</title>
		<link>http://www.sytone.com/2009/02/desktop-candy/</link>
		<comments>http://www.sytone.com/2009/02/desktop-candy/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 12:32:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=124</guid>
		<description><![CDATA[ <p>Finally have a nice minimal desktop that is functional. I am using a hacked version of Enigma and HUD Vision for Rainmeter V1 and the background came from here. I also use the RC of Fences by Stardock to keep the desktop clean. The Photo in the top left changes every 15 seconds [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F02%2Fdesktop-candy%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2009%2F02%2Fdesktop-candy%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Finally have a nice minimal desktop that is functional. I am using a hacked version of Enigma and HUD Vision for Rainmeter V1 and the background came from <a href="http://www.caedes.net/Zephir.cgi?lib=Caedes::Infopage&amp;image=doubleheader-1159558301.jpg" target="_blank" rel="lightbox[124]">here</a>. I also use the RC of Fences by Stardock to keep the desktop clean. The Photo in the top left changes every 15 seconds and the meters to the top right are for iiNet and use the XML output of iiUsage.</p>
<div class="shr-publisher-124"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F02%2Fdesktop-candy%2F' data-shr_title='Desktop+Candy'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F02%2Fdesktop-candy%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2009%2F02%2Fdesktop-candy%2F' data-shr_title='Desktop+Candy'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2009/02/desktop-candy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running Windows Home Server and a Desktop Mod</title>
		<link>http://www.sytone.com/2008/11/running-windows-home-server-and-a-desktop-mod/</link>
		<comments>http://www.sytone.com/2008/11/running-windows-home-server-and-a-desktop-mod/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 12:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=116</guid>
		<description><![CDATA[ <p>With a new PC at home I have re-purposed my old desktop as a home server. For the OS I have used windows Home Server. I have read about it and thought I was time to try it out.</p> Desktop Mod <p>First the Desktop, as I wanted to place it in a cupboard [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2008%2F11%2Frunning-windows-home-server-and-a-desktop-mod%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2008%2F11%2Frunning-windows-home-server-and-a-desktop-mod%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>With a new PC at home I have re-purposed my old desktop as a home server. For the OS I have used windows Home Server. I have read about it and thought I was time to try it out.</p>
<h3>Desktop Mod</h3>
<p>First the Desktop, as I wanted to place it in a cupboard the case had to fit… It didn’t…</p>
<p>Time for Screwdrivers, Bits of plastic, ducktape and a Stanley knife. My wife is still concerned.</p>
<p><strong>1. Pull everything out of old case</strong></p>
<p><a title="The cupboard in question and the case that would not fit (closer...)" href="http://www.flickr.com/photos/9245906@N03/3010546455/"><img src="http://static.flickr.com/3252/3010546455_dabf9eef47_t.jpg" border="0" alt="The cupboard in question and the case that would not fit (closer...)" /></a><a title="The cupboard in question and the case that would not fit" href="http://www.flickr.com/photos/9245906@N03/3010547029/"><img src="http://static.flickr.com/3050/3010547029_1d6e5c752d_t.jpg" border="0" alt="The cupboard in question and the case that would not fit" /></a></p>
<p>As you can see from the pictures the case would not fit so I ripped all the components out and now the case lives in the garage as a spare.</p>
<p><a title="Nearly pulled apart" href="http://www.flickr.com/photos/9245906@N03/3010548045/"><img src="http://static.flickr.com/3271/3010548045_5dd033bdce_t.jpg" border="0" alt="Nearly pulled apart" /></a></p>
<p> </p>
<p><strong>2. Sort out the motherboard mounting</strong></p>
<p>I used some old plastic containers and taped them together, that way there would be airflow behind the motherboard. I used some old plastic wall plugs for spacers and just pushed them into the plastic through a cross cut with the knife.</p>
<p>Once that was done it was a simple job to screw the motherboard to the spacers.</p>
<p><a title="Planning the motherboardmount" href="http://www.flickr.com/photos/9245906@N03/3010548737/"><img src="http://static.flickr.com/3175/3010548737_c708135b40_t.jpg" border="0" alt="Planning the motherboardmount" /></a><a title="Motherboard mount ready to go" href="http://www.flickr.com/photos/9245906@N03/3011386268/"><img src="http://static.flickr.com/3025/3011386268_12908e5cda_t.jpg" border="0" alt="Motherboard mount ready to go" /></a><a title="Mounting the motherboard" href="http://www.flickr.com/photos/9245906@N03/3011387228/"><img src="http://static.flickr.com/3044/3011387228_cbed19dc4a_t.jpg" border="0" alt="Mounting the motherboard" /></a></p>
<p><strong>3. Position everything.</strong></p>
<p>I stuck the motherboard to the side of the cupboard so it was out of the way and placed the power supply at the back of the case, there is plenty of ventilation.</p>
<p><a title="Motherboard in place" href="http://www.flickr.com/photos/9245906@N03/3011387750/"><img src="http://static.flickr.com/3038/3011387750_d446b996aa_t.jpg" border="0" alt="Motherboard in place" /></a></p>
<p><strong>4. Create custom HD mounts.</strong></p>
<p>To mount the hard drives I had the option of cutting out the metal on the case for the mount or using a old shoe box… I went the shoe box It was quite sturdy and worked well and leave me room for a few more drives, as you can see from the picture there is plenty of ventilation room.</p>
<p><a title="Stacked in the cupboard and ready to close up" href="http://www.flickr.com/photos/9245906@N03/3010552009/"><img src="http://static.flickr.com/3241/3010552009_4d9045d931_t.jpg" border="0" alt="Stacked in the cupboard and ready to close up" /></a></p>
<p><strong>5. Tape on the lights and boot</strong></p>
<p>This is a blurry shoot of the cupboard with the door close, you can see the power and HD lights taped to the window so I can see what is happening with a glance. In all it is working well!</p>
<p><a title="Blured final" href="http://www.flickr.com/photos/9245906@N03/3010552265/"><img src="http://static.flickr.com/3138/3010552265_fa51285462_t.jpg" border="0" alt="Blured final" /></a></p>
<p> </p>
<h3>Windows Home Server</h3>
<p>If you do not know what this is click on the picture below, I have installed it to automate the desktop backups and to allow me to share the family picture, movies and music in one place. So far so good! Once I get my XBox 360 on the network I can use media sharing.</p>
<div class="shr-publisher-116"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F11%2Frunning-windows-home-server-and-a-desktop-mod%2F' data-shr_title='Running+Windows+Home+Server+and+a+Desktop+Mod'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F11%2Frunning-windows-home-server-and-a-desktop-mod%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F11%2Frunning-windows-home-server-and-a-desktop-mod%2F' data-shr_title='Running+Windows+Home+Server+and+a+Desktop+Mod'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2008/11/running-windows-home-server-and-a-desktop-mod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theme Hack &#8211; Flickr image in Amazing Grace WordPress theme</title>
		<link>http://www.sytone.com/2008/10/theme-hack-flickr-image-in-amazing-grace-wordpress-theme/</link>
		<comments>http://www.sytone.com/2008/10/theme-hack-flickr-image-in-amazing-grace-wordpress-theme/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 12:34:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=126</guid>
		<description><![CDATA[ <p>If you are using the Amazing Grace theme for WordPress the following hack allows you to change the image in the header bar to a flickr feed. Note: I have only tested in IE, if you have firefox and it does not work drop a comment.</p> <p>Modify header.php and place the following in [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2008%2F10%2Ftheme-hack-flickr-image-in-amazing-grace-wordpress-theme%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2008%2F10%2Ftheme-hack-flickr-image-in-amazing-grace-wordpress-theme%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>If you are using the Amazing Grace theme for WordPress the following hack allows you to change the image in the header bar to a flickr feed. Note: I have only tested in IE, if you have firefox and it does not work drop a comment.</p>
<p>Modify header.php and place the following in the style tags near the top.</p>
<pre>#portrait-bg {
  background:url(<span>&lt;?</span><span>php</span> <span>bloginfo</span>(<span>'template_directory'</span>); ?<span>&gt;</span>/images/bg-portraitB.jpg);
}

#flickr_badge_image1
{
  position:absolute;
  left:14px;
  top:28px;
}
#flickr_badge_image1 img {
  border: none;
  width:283px;
  height:174px;
}</pre>
<p><!-- .csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt  { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; } --></p>
<p>Create a badge with flickr for the tagged photos you want in the header and in the final screen with the code to paste into your site look for the javascript call. Place this between the div with the id portrait-bg in header.php</p>
<p>Example.</p>
<pre><span>&lt;</span><span>div</span> <span>id</span><span>="portrait-bg"</span><span>&gt;</span>
<span>&lt;</span><span>script</span> <span>type</span><span>="text/javascript"</span>
   <span>src</span><span>="http://www.flickr.com/badge_code_v2.gne?count=1&amp;display=random&amp;size=m&amp;layout=x&amp;source=user_tag&amp;user=9245906%40N03&amp;tag=blogheader"</span><span>&gt;
&lt;/</span><span>script</span><span>&gt;&lt;/</span><span>div</span><span>&gt;</span></pre>
<p>Once this is done, place the following image in the Amazing Grace theme directory under images and name it bg-portraitB.jpg. (Right click and save it down)</p>
<p><a href="http://www.sytone.com/wp-content/images/ThemeHackFlickrimageinAmazingGraceWordpr_14ECE/bgportraitB.jpg" rel="lightbox[126]"><img style="border: 0px;" src="http://www.sytone.com/wp-content/images/ThemeHackFlickrimageinAmazingGraceWordpr_14ECE/bgportraitB_thumb.jpg" border="0" alt="bg-portraitB" width="240" height="166" /></a></p>
<p><!-- .csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt  { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; } --></p>
<p>Refresh and all should be done.</p>
<div class="shr-publisher-126"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F10%2Ftheme-hack-flickr-image-in-amazing-grace-wordpress-theme%2F' data-shr_title='Theme+Hack+-+Flickr+image+in+Amazing+Grace+Wordpress+theme'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F10%2Ftheme-hack-flickr-image-in-amazing-grace-wordpress-theme%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F10%2Ftheme-hack-flickr-image-in-amazing-grace-wordpress-theme%2F' data-shr_title='Theme+Hack+-+Flickr+image+in+Amazing+Grace+Wordpress+theme'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2008/10/theme-hack-flickr-image-in-amazing-grace-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My bag is having a holiday and I’m not invited….</title>
		<link>http://www.sytone.com/2008/09/my-bag-is-having-a-holiday-and-i%e2%80%99m-not-invited%e2%80%a6/</link>
		<comments>http://www.sytone.com/2008/09/my-bag-is-having-a-holiday-and-i%e2%80%99m-not-invited%e2%80%a6/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 12:31:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=122</guid>
		<description><![CDATA[ <p>Well made it to Seattle, settlted into my apartment and missing my lugage</p> <p>It will be coming some time tonight apprently, gave me a excuse to shop anyway. One thing you have to love about the food in America is the size of the portions, I asked for a small chicken ceaser and [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2008%2F09%2Fmy-bag-is-having-a-holiday-and-i%25e2%2580%2599m-not-invited%25e2%2580%25a6%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2008%2F09%2Fmy-bag-is-having-a-holiday-and-i%25e2%2580%2599m-not-invited%25e2%2580%25a6%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Well made it to Seattle, settlted into my apartment and missing my lugage</p>
<p>It will be coming some time tonight apprently, gave me a excuse to shop anyway. One thing you have to love about the food in America is the size of the portions, I asked for a small chicken ceaser and it came on a plate 30cm across and piled up. So much for a light lunch.</p>
<div class="shr-publisher-122"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F09%2Fmy-bag-is-having-a-holiday-and-i%25e2%2580%2599m-not-invited%25e2%2580%25a6%2F' data-shr_title='My+bag+is+having+a+holiday+and+I%E2%80%99m+not+invited%E2%80%A6.'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F09%2Fmy-bag-is-having-a-holiday-and-i%25e2%2580%2599m-not-invited%25e2%2580%25a6%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2008%2F09%2Fmy-bag-is-having-a-holiday-and-i%25e2%2580%2599m-not-invited%25e2%2580%25a6%2F' data-shr_title='My+bag+is+having+a+holiday+and+I%E2%80%99m+not+invited%E2%80%A6.'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2008/09/my-bag-is-having-a-holiday-and-i%e2%80%99m-not-invited%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.sytone.com @ 2012-02-07 03:51:25 by W3 Total Cache -->
