<?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>Leateds.com &#187; HowTo</title>
	<atom:link href="http://www.leateds.com/category/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leateds.com</link>
	<description>An Irish Blogger</description>
	<lastBuildDate>Mon, 26 Jul 2010 22:34:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Install an operating system from a usb key</title>
		<link>http://www.leateds.com/2010/install-an-operating-system-from-a-usb-key/</link>
		<comments>http://www.leateds.com/2010/install-an-operating-system-from-a-usb-key/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 22:33:33 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[command prompt cd copy to usb]]></category>
		<category><![CDATA[install windows 7 from a usb]]></category>
		<category><![CDATA[install windows faster]]></category>
		<category><![CDATA[install windows from a usb]]></category>
		<category><![CDATA[install windows vista from a usb]]></category>

		<guid isPermaLink="false">http://www.leateds.com/?p=1223</guid>
		<description><![CDATA[Installing an operating system can take a long time, especially when installing them from a CD. Another option, and probably the best option is to set up your usb key so that you can install the operating system from it. Recently I have found myself wiping hard drives and reinstalling operating systems a lot, and I [...]


Related posts:<ol><li><a href='http://www.leateds.com/2010/windows-vista-hangs-on-installation/' rel='bookmark' title='Permanent Link: Windows vista hangs on installation'>Windows vista hangs on installation</a> <small>Up until recently I had only ever installed Windows Vista...</small></li>
<li><a href='http://www.leateds.com/2009/t-minus-1-month/' rel='bookmark' title='Permanent Link: T-Minus 1 month'>T-Minus 1 month</a> <small>Image via CrunchBase As of today it is exactly one...</small></li>
<li><a href='http://www.leateds.com/2009/windows-7-has-arrived/' rel='bookmark' title='Permanent Link: Windows 7 has arrived!'>Windows 7 has arrived!</a> <small>Ok just putting a quick post up tonight as i...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Installing an operating system can take a long time, especially when installing them from a CD. Another option, and probably the best option is to set up your usb key so that you can install the operating system from it.</p>
<p style="text-align: justify;"><a href="http://www.leateds.com/2010/a-lot-of-computer-maintenance-to-do/" target="_blank">Recently</a> I have found myself wiping hard drives and reinstalling operating systems a lot, and I wanted a quicker way to do it and found installing the operating system to a usb key to be the best.</p>
<p style="text-align: justify;">Setting up the usb is really simple, only use this for windows vista and windows 7 as windows xp will not let you install it from a usb.</p>
<p style="text-align: justify;">The first step is to format the memory stick  to fat32 and create a partition, this is done in the command prompt, go to start, then click run and type cmd or in the search box in windows vista and windows 7 just type cmd and press enter.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="list disk" href="http://www.leateds.com/photos/photo/4564326744/list-disk.html"><img class="aligncenter" src="http://farm4.static.flickr.com/3488/4564326744_9fb30f9340.jpg" alt="list disk" width="460" height="136" /></a></p>
<p style="text-align: justify;">Type the following lines to format your memory key, (note disk 1 represents which disk is your usb, type &#8220;list disk&#8221; (example image above) to find out which one your usb is when is the diskpart section):</p>
<p><span style="font-family: 'Courier New';"> </span></p>
<ul>
<li><span style="color: #ff6600;">diskpart</span></li>
<li><span style="color: #ff6600;">select disk 1</span></li>
<li><span style="color: #ff6600;">clean</span></li>
<li><span style="color: #ff6600;">create partition primary</span></li>
<li><span style="color: #ff6600;">select partition 1</span></li>
<li><span style="color: #ff6600;">active</span></li>
<li><span style="color: #ff6600;">format fs=fat32</span></li>
<li><span style="color: #ff6600;">assign</span></li>
<li><span style="color: #ff6600;">exit</span></li>
</ul>
<p><a class="tt-flickr tt-flickr-Medium" title="format and assign partition primary" href="http://www.leateds.com/photos/photo/4563696539/format-and-assign-partition-primary.html"><img class="aligncenter" src="http://farm4.static.flickr.com/3133/4563696539_09f0cb8829.jpg" alt="format and assign partition primary" width="500" height="367" /></a></p>
<p style="text-align: justify;">Once your usb key is fully formatted using the commands above the next step is to copy the files to your usb key from the operating system disc, use the command below in the command prompt to do this:</p>
<ul>
<li><span style="color: #ff6600;">xcopy d:\*.* /s/e/f e:\</span></li>
</ul>
<p style="text-align: justify;">In the code above, the d:\ represents the drive letter of your disc drive and the e:\ is the drive letter of your usb key.</p>
<p style="text-align: justify;">You are now ready to install your operating system, just plug it into your computer and boot to the usb.</p>


<p>Related posts:<ol><li><a href='http://www.leateds.com/2010/windows-vista-hangs-on-installation/' rel='bookmark' title='Permanent Link: Windows vista hangs on installation'>Windows vista hangs on installation</a> <small>Up until recently I had only ever installed Windows Vista...</small></li>
<li><a href='http://www.leateds.com/2009/t-minus-1-month/' rel='bookmark' title='Permanent Link: T-Minus 1 month'>T-Minus 1 month</a> <small>Image via CrunchBase As of today it is exactly one...</small></li>
<li><a href='http://www.leateds.com/2009/windows-7-has-arrived/' rel='bookmark' title='Permanent Link: Windows 7 has arrived!'>Windows 7 has arrived!</a> <small>Ok just putting a quick post up tonight as i...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.leateds.com/2010/install-an-operating-system-from-a-usb-key/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A great image editing plugin for WordPress</title>
		<link>http://www.leateds.com/2009/a-great-image-editing-plugin-for-wordpress/</link>
		<comments>http://www.leateds.com/2009/a-great-image-editing-plugin-for-wordpress/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 20:54:27 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Uploading and downloading]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress image crop]]></category>
		<category><![CDATA[wordpress image rotate]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wordpress scissors]]></category>

		<guid isPermaLink="false">http://www.leateds.com/?p=927</guid>
		<description><![CDATA[A great feature of the WordPress platform is that it allows you to easily implement pictures into your posts &#38; pages with little to no effort. However there has always been one thing missing from this, that is the ability to crop, and rotate your images live whilst you upload them. On numerous occasions i [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">A great feature of the <a href="http://wordpress.org/" target="_blank">WordPress</a> platform is that it allows you to easily implement pictures into your posts &amp; pages with little to no effort.</p>
<p style="text-align: justify;">However there has always been one thing missing from this, that is the ability to crop, and rotate your images live whilst you upload them. On numerous occasions i have uploaded a picture and then realized that i had put it the wrong way round. I would then have to re-upload a rotated version; this all takes time, time that i could use doing something else.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-926" title="screenshot-1" src="http://www.leateds.com/wp-content/uploads/2009/08/screenshot-1-432x387-custom.png" alt="screenshot-1" width="432" height="387" /></p>
<p style="text-align: justify;">Tonight i was looking about the WordPress plugin&#8217;s page and found a great small plugin that lets you crop, resize, rotate and add watermarks to your pictures. You do not have to upload a picture then go to a different page in your admin panel to edit the picture, the plugin is implemented into the existing WordPress image upload box and it only takes 2 seconds to fix up a picture.</p>
<p><img class="aligncenter size-full wp-image-928" title="new scissors buttons" src="http://www.leateds.com/wp-content/uploads/2009/08/new-scissors-buttons.png" alt="new scissors buttons" width="399" height="26" /></p>
<p style="text-align: justify;">I know for sure i will be using this plugin a lot in the future. The plugin is called: <a href="http://wordpress.org/extend/plugins/scissors/" target="_blank">Scissors</a> and can be found on the <a href="http://wordpress.org/extend/plugins/" target="_blank">WordPress plugin directory</a>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.leateds.com/2009/a-great-image-editing-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Repair</title>
		<link>http://www.leateds.com/2009/computer-repair/</link>
		<comments>http://www.leateds.com/2009/computer-repair/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 17:38:16 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[computervirus]]></category>
		<category><![CDATA[fix your own computer. increase pc speed]]></category>
		<category><![CDATA[Hard disk drive]]></category>
		<category><![CDATA[Malicious Software]]></category>
		<category><![CDATA[pc repair]]></category>
		<category><![CDATA[Personal computer]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Spyware]]></category>
		<category><![CDATA[Spyware and Adware]]></category>

		<guid isPermaLink="false">http://www.leateds.com/?p=920</guid>
		<description><![CDATA[Image via Wikipedia I enjoy messing about with computers and learning new ways of doing things or how to get the most out of a computer. Having knowledge of how a computer operates is very usefully when something goes wrong. I have been using computers now for about 10 or 11 years and since my [...]


Related posts:<ol><li><a href='http://www.leateds.com/2009/back-at-work-now/' rel='bookmark' title='Permanent Link: Back at work now'>Back at work now</a> <small>Image via Wikipedia For the past two weeks i had...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Hdd.jpg" rel="lightbox[920]"><img title="Image of a Western Digital 250Gb SATA Hard Dri..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Hdd.jpg/300px-Hdd.jpg" alt="Image of a Western Digital 250Gb SATA Hard Dri..." width="300" height="201" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:Hdd.jpg" rel="lightbox[920]">Wikipedia</a></dd>
</dl>
</div>
</div>
<p style="text-align: justify;">I enjoy messing about with computers and learning new ways of doing things or how to get the most out of a computer. Having knowledge of how a computer operates is very usefully when something goes wrong.</p>
<p style="text-align: justify;">I have been using computers now for about 10 or 11 years and since my first day with them i have now become a lot more familiar with fixing problems. Before when i had little know-how on how a computer operated i would have to get someone down to have a look at the computer and fix it. So they would usually end up taking it away and then coming back a day or two later saying it would cost a fair bit of money.</p>
<p style="text-align: justify;">I reckon that whenever a tech person takes away your computer, they probably have one look at it and most likely 99% of the time they will know how to fix it and it will probably only take a few hours, in most cases a run of an anti-virus program would sort out most problems. Then in that other 1% a more in depth investigation will be required to find out what is the problem.</p>
<p style="text-align: justify;">Since i have such an interest in computers i was keen to find out how to fix them. Now if something goes wrong with my computer i can fix it easily with no hassle at all <img src='http://www.leateds.com/wp-content/plugins/tango-smileys-extended/tango/grin.png' alt='Grin' title='Grin' class='tse-smiley' /> . It saves you so much time and money. By fixing it yourself it will not be broken for as long since you do not have to wait for your computer to be returned to you and also you do not have to pay those mental fees people try and ask for!</p>
<p style="text-align: justify;">I talked to a few people before and they told me that they would take it to a PC clinic, like the ones they have in PC World. Before most places like this even look at your computer they will straight away charge you a standard fee of €50! That is just mad money, then on top of that you will get charged for any parts required etc&#8230;</p>
<p style="text-align: justify;">Friends of mine always get me to have a look at their computers, and most of the time it would be something simple to fix such as a few viruses or maybe some spyware or even errors that have occurred. A lot of the time people ask, why is my computer going so slow?</p>
<p style="text-align: justify;">A few simple things could be done to fix that big problem that you have, first make sure you have enough space on your disk drive, check for viruses / spyware , remove unnecessary programs,  and try a defrag of your hard drive. Most of the time that will work no problem and you will have your computer back up and running smoothly again.</p>
<p style="text-align: justify;">It is strange that whenever i start to fix one person’s computer, suddenly loads more computers break and i end up getting asked to fix them. I think it is odd that they all break around the same time as each-other, or maybe it is just me thinking they do. I enjoy fixing them, and it also gets me a bit of money on the side whilst i am not at work <img src='http://www.leateds.com/wp-content/plugins/tango-smileys-extended/tango/wink.png' alt='Wink' title='Wink' class='tse-smiley' /> .</p>


<p>Related posts:<ol><li><a href='http://www.leateds.com/2009/back-at-work-now/' rel='bookmark' title='Permanent Link: Back at work now'>Back at work now</a> <small>Image via Wikipedia For the past two weeks i had...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.leateds.com/2009/computer-repair/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transfer Files From Pc To Playstation 3</title>
		<link>http://www.leateds.com/2009/transfer-files-from-pc-to-playstation-3/</link>
		<comments>http://www.leateds.com/2009/transfer-files-from-pc-to-playstation-3/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 23:46:58 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Hard disk drive]]></category>
		<category><![CDATA[link ps3 to pc]]></category>
		<category><![CDATA[Media player]]></category>
		<category><![CDATA[media share ps3]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Playstation]]></category>
		<category><![CDATA[playstation 3]]></category>
		<category><![CDATA[transfer files from pc to ps3]]></category>
		<category><![CDATA[Windows Media Player]]></category>
		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://www.leateds.com/?p=314</guid>
		<description><![CDATA[Image via Wikipedia Over the past few days i have been trying to get my pc to connect to the playstation 3, I couldnt figure out how to do it, it was getting really frustrating. I attempted loads of different methods such as setting my pc as a server and attempting to access it that [...]


Related posts:<ol><li><a href='http://www.leateds.com/2009/i-hate-drivers/' rel='bookmark' title='Permanent Link: I hate drivers&#8230;'>I hate drivers&#8230;</a> <small>Image via Wikipedia &#8230;Computer drivers that is ! The reason...</small></li>
<li><a href='http://www.leateds.com/2009/t-minus-1-month/' rel='bookmark' title='Permanent Link: T-Minus 1 month'>T-Minus 1 month</a> <small>Image via CrunchBase As of today it is exactly one...</small></li>
<li><a href='http://www.leateds.com/2009/ordered-windows-7/' rel='bookmark' title='Permanent Link: Ordered Windows 7'>Ordered Windows 7</a> <small>Last night i finally got around to ordering myself a...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 144px;">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:Playstation_logo_colour.svg"><img title="The PlayStation logo" src="http://upload.wikimedia.org/wikipedia/en/thumb/4/4e/Playstation_logo_colour.svg/134px-Playstation_logo_colour.svg.png" alt="The PlayStation logo" width="134" height="102" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:Playstation_logo_colour.svg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p style="text-align: justify;">Over the past few days i have been trying to get my pc to connect to the playstation 3, I couldnt figure out how to do it, it was getting really frustrating. I attempted loads of different methods such as setting my pc as a server and attempting to access it that way, but it was having none of it, no success there for me<img onclick="grin(':sad:');" src="../wp-includes/images/smilies/icon_sad.gif" alt=":sad:" /></p>
<p style="text-align: justify;">Next i tried linking my playstation to my pc using an ethernet cable just to see if it might recognise some type of folder that i had set for public sharing, that too would not work. At this stage i didnt know what to do, but when i start to try to do something i have to keep at it until i get it done, if i dont find out how to do it i feel that it got the better of me, and after all why should technology get the better of a human?, we designed technology therefore we should know how to control it. So of course i continued to try different methods of linking the two together.</p>
<p style="text-align: center;"><img class="size-full wp-image-315 alignnone" title="select_media_sharing" src="http://www.leateds.com/wp-content/uploads/2009/03/select_media_sharing1.png" alt="select_media_sharing" width="127" height="198" /></p>
<p style="text-align: justify;">I was then messing about with the playstation and i saw that you could search for media devices so i thought why not try to scan for one to see if it finds anything, first try it didnt, so then i realsied that i could use windows media player as a media device and then the playstation should recognise it, i decided to do it wirelessly, so no cables lying around the room, i decided to let the router broadcast the signal,</p>
<p style="text-align: justify;">There is no messing about to do this it just does it by itself, so i went into windows media player and clicked on the<img class="size-full wp-image-316 alignright" title="unknown_device" src="http://www.leateds.com/wp-content/uploads/2009/03/unknown_device1.png" alt="unknown_device" width="46" height="53" /> drop down arrow in the library section and clicked &#8216;Media Sharing&#8217;,then up popped a box with an unknown device, this was the playstation so i clicked allow so it would have permission to access my files, then i went back to the playstation and there i could see my pc listed.</p>
<p style="text-align: justify;">Sometimes when you have just set up the connection with the pc the playstation will say that it has not got permisson to access the pc, just restart your playstation and it will work perfectly. Also before doing this you must have <a href="http://www.microsoft.com/windows/windowsmedia/player/11/default.aspx" target="_blank">Windows Media Player 11</a> or higher.</p>
<p style="text-align: justify;">By having your Playstation linked to the pc you can also stream music and video across and you will not need to save it to the hard disk, however if you are like me and got one of the limited edition 160gb playstations then you will have no worries about saving videos to the hard drive.</p>
<p style="text-align: justify;">
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div class="wp-caption aligncenter" style="width: 212px"><a href="http://commons.wikipedia.org/wiki/Image:Hard_disk_platters_and_head.jpg" rel="lightbox[314]"><img title="Toshiba HDD2189 2.5" src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Hard_disk_platters_and_head.jpg/202px-Hard_disk_platters_and_head.jpg" alt="Toshiba HDD2189 2.5" width="202" height="135" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
</div>
<p style="text-align: justify;">You might be thinking instead of trying to link the pc to the playstation to transfer files why dont you just use a memory stick or a portable hard drive. I did try this first, when i put my memory stick into my playstation it recognised it straight away i was happy, then i clicked to go into it and it said no data found, i knew there was data on it so there had to be something wrong.</p>
<p style="text-align: justify;">It wasnt until later that i found out that instead of clicking &#8216;X&#8217; to open the memory stick, you have to instead press &#8216;Triangle&#8217; button and choose display all, then it will open up and show you your files, this is really easy to do and i wish i found out sooner how  to do it, but i still prefer to set it up wirelessly. Also some different types for portable hard drives cannot get recognised by the plastion, for example, the seagate freeagent, this is the one i was using and it didnt work.</p>
<p style="text-align: justify;">I done this using windows xp, i am sure it will not matter if you use xp or vista.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>


<p>Related posts:<ol><li><a href='http://www.leateds.com/2009/i-hate-drivers/' rel='bookmark' title='Permanent Link: I hate drivers&#8230;'>I hate drivers&#8230;</a> <small>Image via Wikipedia &#8230;Computer drivers that is ! The reason...</small></li>
<li><a href='http://www.leateds.com/2009/t-minus-1-month/' rel='bookmark' title='Permanent Link: T-Minus 1 month'>T-Minus 1 month</a> <small>Image via CrunchBase As of today it is exactly one...</small></li>
<li><a href='http://www.leateds.com/2009/ordered-windows-7/' rel='bookmark' title='Permanent Link: Ordered Windows 7'>Ordered Windows 7</a> <small>Last night i finally got around to ordering myself a...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.leateds.com/2009/transfer-files-from-pc-to-playstation-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create A Custom Windows Install CD</title>
		<link>http://www.leateds.com/2009/create-a-custom-windows-install-cd/</link>
		<comments>http://www.leateds.com/2009/create-a-custom-windows-install-cd/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 21:34:02 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[custom install]]></category>
		<category><![CDATA[custom windows install]]></category>
		<category><![CDATA[nlite]]></category>
		<category><![CDATA[vlite]]></category>
		<category><![CDATA[windows custom cd]]></category>
		<category><![CDATA[windows mod cd]]></category>

		<guid isPermaLink="false">http://www.leateds.com/?p=160</guid>
		<description><![CDATA[Have you ever wanted to make your own custom install disc for windows? If you are constantly having to uninstall and reinstall windows, then it is best to have your own custom version of windows.The easiest way that i have found to do this is by using a program called nLite and best of all [...]


Related posts:<ol><li><a href='http://www.leateds.com/2009/ordered-windows-7/' rel='bookmark' title='Permanent Link: Ordered Windows 7'>Ordered Windows 7</a> <small>Last night i finally got around to ordering myself a...</small></li>
<li><a href='http://www.leateds.com/2009/t-minus-1-month/' rel='bookmark' title='Permanent Link: T-Minus 1 month'>T-Minus 1 month</a> <small>Image via CrunchBase As of today it is exactly one...</small></li>
<li><a href='http://www.leateds.com/2009/i-hate-drivers/' rel='bookmark' title='Permanent Link: I hate drivers&#8230;'>I hate drivers&#8230;</a> <small>Image via Wikipedia &#8230;Computer drivers that is ! The reason...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Have you ever wanted to make your own custom install disc for windows? If you are constantly having to uninstall and reinstall windows, then it is best to have your own custom version of windows.The easiest way that i have found to do this is by using a program called <a href="http://www.nliteos.com/nlite.html" target="_blank">nLite</a> and best of all its free!</p>
<p style="text-align: justify;">With nLite you can completely modify the way you install your operating system. you can even make the whole installation process automatic, meaning that you will not have to sit at the computer and modify the settings, this is very time consuming and by having it do the entire install by itself it can make your life that little bit easier.</p>
<p style="text-align: justify;">Also you can choose what default windows programs you don&#8217;t want to include like windows messenger or notepad. You can add the latest windows service pack or hotfix into the install, this will also save time.</p>
<p style="text-align: justify;">And of course you can tweak the hell out of it, by doing this you will increase performance speed and unleash the maximum performance from your computer. You can also change the appearance of how windows will look once installed, by changing if you want classic or standard windows theme or if you want the olive green colour scheme or just the standard blue.</p>
<p>Here are the few simple steps involved:</p>
<p style="padding-left: 30px;">1.) You will first need to get the installation files for your operating system, you can make a new folder on your desktop and copy all the files from your install disc or just copy the contents of the &#8216;I386&#8242; folder from your hard disk.</p>
<p style="padding-left: 30px;">2.) Then open the program and locate your install files.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-222" title="search-for-install-files" src="http://www.leateds.com/wp-content/uploads/2009/03/search-for-install-files1.png" alt="search-for-install-files" width="468" height="202" /></p>
<p style="padding-left: 30px;">3.) Next select what part of the install that you want to modify.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-223" title="select-what-you-want-to-customize" src="http://www.leateds.com/wp-content/uploads/2009/03/select-what-you-want-to-customize1.png" alt="select-what-you-want-to-customize" width="341" height="235" /></p>
<p style="padding-left: 30px;">4.) Then add the latest service pack.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-224" title="add-latest-service-pack" src="http://www.leateds.com/wp-content/uploads/2009/03/add-latest-service-pack1.png" alt="add-latest-service-pack" width="467" height="126" /></p>
<p style="padding-left: 30px;">5.) Don&#8217;t forget to add any custom drivers you installed since the original install of the OS.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-225" title="add-your-drivers" src="http://www.leateds.com/wp-content/uploads/2009/03/add-your-drivers1.png" alt="add-your-drivers" width="209" height="36" /></p>
<p style="padding-left: 30px;">6.) Next set compatibility and choose which default programs you want to remove.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-226" title="set-default-programs-you-want-to-remove" src="http://www.leateds.com/wp-content/uploads/2009/03/set-default-programs-you-want-to-remove1.png" alt="set-default-programs-you-want-to-remove" width="283" height="182" /></p>
<p style="padding-left: 30px;">7.) Set up unattended install</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-227" title="unattended-install" src="http://www.leateds.com/wp-content/uploads/2009/03/unattended-install1.png" alt="unattended-install" width="468" height="278" /></p>
<p style="padding-left: 30px;">8.) Customize the performance by editing the different tweaks available.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-228" title="tweak" src="http://www.leateds.com/wp-content/uploads/2009/03/tweak1.png" alt="tweak" width="304" height="143" /></p>
<p style="padding-left: 30px;">9.) And finally create an ISO file or burn directly to a disc.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-229" title="create-iso-file-or-burn-immediatly" src="http://www.leateds.com/wp-content/uploads/2009/03/create-iso-file-or-burn-immediatly1.png" alt="create-iso-file-or-burn-immediatly" width="469" height="275" /></p>
<p style="text-align: center;">
<p>There are 2 versions available:  <a href="http://www.nliteos.com/nlite.html" target="_blank">nLite</a> is for all versions previous to vista and <a href="http://www.vlite.net/about.html" target="_blank">vLite</a> is for windows vista.</p>
<p style="text-align: center;"><span style="text-decoration: underline;">Download Links</span></p>
<p style="text-align: center;"><a href="http://www.nliteos.com/download.html" target="_blank"><img class="alignnone size-full wp-image-234" title="nl_logo" src="http://www.leateds.com/wp-content/uploads/2009/03/nl_logo1.png" alt="nl_logo" width="65" height="60" /></a> <a href="http://www.vlite.net/download.html" target="_blank"><img class="alignnone size-full wp-image-235" title="vlogo" src="http://www.leateds.com/wp-content/uploads/2009/03/vlogo1.png" alt="vlogo" width="65" height="77" /></a></p>


<p>Related posts:<ol><li><a href='http://www.leateds.com/2009/ordered-windows-7/' rel='bookmark' title='Permanent Link: Ordered Windows 7'>Ordered Windows 7</a> <small>Last night i finally got around to ordering myself a...</small></li>
<li><a href='http://www.leateds.com/2009/t-minus-1-month/' rel='bookmark' title='Permanent Link: T-Minus 1 month'>T-Minus 1 month</a> <small>Image via CrunchBase As of today it is exactly one...</small></li>
<li><a href='http://www.leateds.com/2009/i-hate-drivers/' rel='bookmark' title='Permanent Link: I hate drivers&#8230;'>I hate drivers&#8230;</a> <small>Image via Wikipedia &#8230;Computer drivers that is ! The reason...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.leateds.com/2009/create-a-custom-windows-install-cd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
