<?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>EZ Computer Help.Org &#187; How to?</title>
	<atom:link href="http://www.ezcomputerhelp.org/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ezcomputerhelp.org</link>
	<description>Help and Info site for your Computer, iPod, Laptop, Home Server, Xbox, Printer, Mobile Phone, Wireless Network, Mac and much more.</description>
	<lastBuildDate>Sun, 28 Feb 2010 03:41:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Configure Cisco Router to Work With Cable Internet</title>
		<link>http://www.ezcomputerhelp.org/how-to-configure-cisco-router-to-work-with-cable-internet/</link>
		<comments>http://www.ezcomputerhelp.org/how-to-configure-cisco-router-to-work-with-cable-internet/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 20:57:25 +0000</pubDate>
		<dc:creator>EZ Helper</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Home Server]]></category>
		<category><![CDATA[Server Rack]]></category>

		<guid isPermaLink="false">http://www.ezcomputerhelp.org/?p=315</guid>
		<description><![CDATA[If you just bought your first used Cisco router, I bet one thing you want to immediately do is connecting the Cisco router to the cable internet.
I know I did, I have cable internet for my home network. Previously I used Linksys router to get my LAN connected to the internet.
Configuring Cisco router to connect [...]


Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/cisco-switch-2950-command-list/' rel='bookmark' title='Permanent Link: Cisco Switch 2950 command list'>Cisco Switch 2950 command list</a></li>
<li><a href='http://www.ezcomputerhelp.org/new-parts-added-to-my-home-server-cisco-3745-router-and-hp-dc5100/' rel='bookmark' title='Permanent Link: New Parts added to my home server Cisco 3745 router and HP dc5100'>New Parts added to my home server Cisco 3745 router and HP dc5100</a></li>
<li><a href='http://www.ezcomputerhelp.org/cisco-2950-password-recovery-help/' rel='bookmark' title='Permanent Link: Cisco 2950 password recovery help'>Cisco 2950 password recovery help</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you just bought your first used <span id="IL_AD1">Cisco router</span>, I bet one thing you want to immediately do is <span style="font-weight: bold;">connecting the Cisco router to the <span id="IL_AD2">cable internet</span></span>.<br />
I know I did, I have cable internet for my home network. Previously I used <span style="font-weight: bold;">Linksys router</span> to get my <span style="font-weight: bold;">LAN </span>connected to the internet.</p>
<p><span style="font-weight: bold;">Configuring Cisco router to connect to the cable internet</span> is easy work, even if you know only the basic configuration stuff in Cisco.</p>
<p><span><span style="font-weight: bold; color: #000099;">Configure IP Address of the Router&#8217;s Interfaces</span></span></p>
<p>The router will get the ip configuration from DHCP server of the ISP, the Ethernet 0/0 port I use as the exit point to the internet.<br />
The Ethernet 0/1 will be the port where my computer is connected. I&#8217;m going to set private IP address as the gateway for <span id="IL_AD4">the computer</span>.</p>
<p><span><span style="font-weight: bold; color: #000099;">Configure Routing</span></span></p>
<p>This example only shows the basic static routing, the router will send all request from the client (from port Ethernet 0/1) to the port Ethernet 0/0.</p>
<p>We need to first set the IP address of the router&#8217;s interfaces to begin <span style="font-weight: bold;">configuring Cisco router to work with cable internet</span>.</p>
<p>If you configure the router for the first time, connect to it using the console cable.</p>
<p>the interface ethernet 0/0 is connected to the cable modem and interface ethernet 0/1 connected to my PC.</p>
<p>Ethernet 0/0 is using configuration got from the ISP so we&#8217;ll set it to receive IP address from ISP&#8217;s DHCP server. Always remember to give no shutdown command on the interface:</p>
<p>router&gt; enable<br />
router# configure terminal<br />
router (config) # interface ethernet 0/0<br />
router (config-if)# ip address dhcp<br />
router (config-if)# no shutdown</p>
<p>Now to set the Ethernet 0/1 port as the picture above, we can just jump right to the interface 0/1 configuration mode:</p>
<p>router (config-if)# interface ethernet 0/1<br />
router (config-if)# ip address 192.168.1.1 255.255.255.0<br />
router (config-if)# no shutdown</p>
<p>You have successfully configure IP addresses to your interfaces, you can check it using the following command:</p>
<p>router# show ip interface brief</p>
<p>Interface	IP-Address	OK?	Method	Status	Protocol<br />
Ethernet0	xxx.xxx.xxx.xxx	YES	DHCP	up	up<br />
Ethernet1	192.168.1.1	YES	NVRAM	up	up</p>
<p>The show ip interface brief is a very useful command, you would want to use it to check the status of your interfaces.</p>
<p>The interface column shows you all the interfaces you have, the IP-Address is of course shows the addresses of the respective interfaces.</p>
<p>The Method column shows whether the addresses given by a DHCP server or you configured it yourself (stored in NVRAM) or it can also shows TFTP &#8211; configuration from TFTP server.</p>
<p>When you finished this configuration, your router will be receiving IP address on interface 0/0 from DHCP server of the ISP, and the interface 0/1 will be ready to communicate with network 192.168.1.0</p>
<p>Setting Cisco Router as DHCP Server</p>
<p>This option really is optional if you want to set Cisco router to work with cable internet, but this is a good chance to add your skill in configuring Cisco devices.</p>
<p>Now it&#8217;s time to configure your router as DHCP server.</p>
<p>To set a DHCP server, you will configure a pool of network IP addresses that you want to give out to the clients (PC, printer, NAS, etc).<br />
I want to give out the IP addresses from the network 192.168.1.0.</p>
<p>First thing you need to configure is to exclude the IP addresses that you dont want to give out.<br />
For example, I&#8217;ve configured the router interface 0/1 to be 192.168.1.1, then I need to exclude 192.168.1.1 so the router won&#8217;t give out this address.<br />
You can configure the exclusion in the router&#8217;s global configuration mode:</p>
<p>router&gt; enable<br />
router# configure terminal<br />
router (config)# ip dhcp excluded-address 192.168.1.1</p>
<p>This command is very useful especially if you need to exclude a range of IP addresses, if you need to exclude say 192.168.1.1 until 192.168.1.10 you can do it like this:</p>
<p>router (config)# ip dhcp excluded-address 192.168.1.1 192.168.1.10</p>
<p>After the ip dhcp excluded-address we give the low IP address and the high IP address, this way your router not give IP addresses from 192.168.1.1 to 192.168.1.10, the router will start giving out address from 192.168.1.11 and so on.</p>
<p><span id="more-315"></span></p>
<p>Next thing to do is creating a pool of addresses, when issuing the ip dhcp pool, you&#8217;ll be taken to the dhcp configuration mode where you can set the additional parameters beside the ip address and subnet mask to the clients.<br />
In this example I want to make a pool with the name of HOME_CLIENTS</p>
<p>router&gt; enable<br />
router# configure terminal<br />
router (config)# ip dhcp pool HOME_CLIENTS<br />
router (dhcp-config)# network 192.168.1.0 255.255.255.0<br />
router (dhcp-config)# default-router 192.168.1.1<br />
router (dhcp-config)# import all</p>
<p>At the third line above you can see the configuration command of a pool with the name HOME_CLIENTS.</p>
<p>Fourth line shows that the pool HOME_CLIENTS will give out the addresses in the network 192.168.1.0, with the exception of the addresses in the ip dhcp excluded-address 192.168.1.1 that I showed you previously.</p>
<p>Fifth line tells the clients should be given a default gateway address of 192.168.1.1 (the router&#8217;s IP address).</p>
<p>The sixth line is the one important thing for configuring DHCP server in cable internet environment.<br />
The import all command tells the router to give out other configuration received from the ISP cable internet DHCP server to the clients in the LAN.<br />
For example, most ISP will give the DNS servers IP addresses from their DHCP server and this configuration might change depends on the ISP, so you definitely want to give this configuration out to the clients.</p>
<p>If you have your own DNS server in the LAN, you can tell the clients to use this DNS server using the following command:</p>
<p>router (dhcp-config)# dns-server 192.168.1.2 192.168.1.3</p>
<p>The above command will send out DNS server address of 192.168.1.2 and 192.168.1.3 to the clients.</p>
<p>You can also configure the router to use the above DNS server using the following command in the global configuration mode:</p>
<p>router (config)# ip name-server 192.168.1.2 192.168.1.3</p>
<p>When connecting your router to the cable internet through cable modem, your router will receive a dynamic IP address from the ISP DHCP server according to the scenario.</p>
<p>While you only get one IP address from the ISP, you also need to connect more than one computer to the internet.<br />
Plus the public IP address is different network with the private IP addresses in your LAN.</p>
<p>NAT can solve this problem, it stores the requesting private IP addresses in the address translation table of the router, translates every request from your LAN and forward it to the internet using the single public IP address.</p>
<p>Now NAT can be used in different scenario, but I&#8217;ll save them for future posts, for now the NAT form that we&#8217;ll use is many-to-one scenario of NAT.<br />
Many private IP addresses translated to be one public IP address, some people call it overloading and/or Port Address Translation (PAT).</p>
<p>NAT Overload will assign a unique logical port number to every request from the LAN to the internet thus PAT.<br />
For example, if you have a public IP address of 202.1.1.1, then for a request from the user of 192.168.1.20 in your LAN will be translated into 192.168.1.20:1720 for the incoming request tothe router, and 202.1.1.1:1521.<br />
This is how the router can identify which request goes to which device.</p>
<p>Create Access List</p>
<p>router&gt; enable<br />
router# configure terminal<br />
router (config)# access-list 101 permit ip 192.168.1.0 0.0.0.255 any</p>
<p>Issue PAT command</p>
<p>router (config)# ip nat inside source list 101 interface Ethernet0/0 overload</p>
<p>Identify interfaces for ip nat inside and outside</p>
<p>router (config)# interface ethernet0/0<br />
router (config-if)# ip nat outside<br />
router (config-if)# interface ethernet0/1<br />
router (config-if)# ip nat inside</p>
<p>That&#8217;s it three easy to remember steps for configuring NAT/PAT, one last thing to do for connecting your router to the cable internet is configuring default route.</p>
<p>Configuring Default Route</p>
<p>I decided to include configuring default route into this post since I only have a simple network topology and we only need one line of command to configure the default route.<br />
Here&#8217;s how we do it, from the last command we jump back to the global configuration mode:</p>
<p>router (config-if)# exit<br />
router (config)# ip route 0.0.0.0 0.0.0.0 ethernet0/0</p>
<p>What the above command does is to route all request that point to any ip address that the router doesn&#8217;t know (0.0.0.0 0.0.0.0) to the ethernet0/0 interface.</p>
<p>If you have a static public IP address from the ISP then you can replace the ethernet0/0 with the IP address given by the ISP.</p>
<p>This is a REPOST thanks to the <a href="http://networking-newbie.blogspot.com/" target="_blank">Networking Newbie </a>site</p>


<p>Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/cisco-switch-2950-command-list/' rel='bookmark' title='Permanent Link: Cisco Switch 2950 command list'>Cisco Switch 2950 command list</a></li>
<li><a href='http://www.ezcomputerhelp.org/new-parts-added-to-my-home-server-cisco-3745-router-and-hp-dc5100/' rel='bookmark' title='Permanent Link: New Parts added to my home server Cisco 3745 router and HP dc5100'>New Parts added to my home server Cisco 3745 router and HP dc5100</a></li>
<li><a href='http://www.ezcomputerhelp.org/cisco-2950-password-recovery-help/' rel='bookmark' title='Permanent Link: Cisco 2950 password recovery help'>Cisco 2950 password recovery help</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ezcomputerhelp.org/how-to-configure-cisco-router-to-work-with-cable-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Align your screen with AT&amp;T Tilt Windows Mobile 6.1</title>
		<link>http://www.ezcomputerhelp.org/how-to-align-your-screen-with-att-tilt-windows-mobile-61/</link>
		<comments>http://www.ezcomputerhelp.org/how-to-align-your-screen-with-att-tilt-windows-mobile-61/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 01:19:08 +0000</pubDate>
		<dc:creator>EZ Helper</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[Tilt]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.ezcomputerhelp.org/how-to-align-your-screen-with-att-tilt-windows-mobile-61/</guid>
		<description><![CDATA[Is your cell phone touchscreen out of alignment? Try these steps to align you windows mobile 6 touchscreen.
Click Start
Click Settings
Click System tab at the bottom
Click Screen
Click Align Screen



Related posts:Uninstall AT&#038;T Software from your AT&#038;T Tilt HTC 8925 Windows Mobile 6.1
AT&#038;T Tilt 8925 User Manual Customizing Phone Settings and Services
Light Saber Keyboard Sliding sounds on AT&#038;T [...]


Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/uninstall-att-software-from-your-att-tilt-htc-8925-windows-mobile-61/' rel='bookmark' title='Permanent Link: Uninstall AT&#038;T Software from your AT&#038;T Tilt HTC 8925 Windows Mobile 6.1'>Uninstall AT&#038;T Software from your AT&#038;T Tilt HTC 8925 Windows Mobile 6.1</a></li>
<li><a href='http://www.ezcomputerhelp.org/att-tilt-8925-user-manual-customizing-phone-settings-and-services/' rel='bookmark' title='Permanent Link: AT&#038;T Tilt 8925 User Manual Customizing Phone Settings and Services'>AT&#038;T Tilt 8925 User Manual Customizing Phone Settings and Services</a></li>
<li><a href='http://www.ezcomputerhelp.org/light-saber-keyboard-sliding-sounds-on-att-tilt-htc-tytn2-or-htc-kaiser-windows-mobile-6/' rel='bookmark' title='Permanent Link: Light Saber Keyboard Sliding sounds on AT&#038;T Tilt (HTC TyTN2 or HTC Kaiser) Windows Mobile 6'>Light Saber Keyboard Sliding sounds on AT&#038;T Tilt (HTC TyTN2 or HTC Kaiser) Windows Mobile 6</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Is your cell phone touchscreen out of alignment? Try these steps to align you windows mobile 6 touchscreen.</p>
<p>Click Start</p>
<p>Click Settings</p>
<p>Click System tab at the bottom</p>
<p>Click Screen</p>
<p>Click Align Screen</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/zbA2Vv2qLvc&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/zbA2Vv2qLvc&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>


<p>Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/uninstall-att-software-from-your-att-tilt-htc-8925-windows-mobile-61/' rel='bookmark' title='Permanent Link: Uninstall AT&#038;T Software from your AT&#038;T Tilt HTC 8925 Windows Mobile 6.1'>Uninstall AT&#038;T Software from your AT&#038;T Tilt HTC 8925 Windows Mobile 6.1</a></li>
<li><a href='http://www.ezcomputerhelp.org/att-tilt-8925-user-manual-customizing-phone-settings-and-services/' rel='bookmark' title='Permanent Link: AT&#038;T Tilt 8925 User Manual Customizing Phone Settings and Services'>AT&#038;T Tilt 8925 User Manual Customizing Phone Settings and Services</a></li>
<li><a href='http://www.ezcomputerhelp.org/light-saber-keyboard-sliding-sounds-on-att-tilt-htc-tytn2-or-htc-kaiser-windows-mobile-6/' rel='bookmark' title='Permanent Link: Light Saber Keyboard Sliding sounds on AT&#038;T Tilt (HTC TyTN2 or HTC Kaiser) Windows Mobile 6'>Light Saber Keyboard Sliding sounds on AT&#038;T Tilt (HTC TyTN2 or HTC Kaiser) Windows Mobile 6</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ezcomputerhelp.org/how-to-align-your-screen-with-att-tilt-windows-mobile-61/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Disable Error Reporting</title>
		<link>http://www.ezcomputerhelp.org/how-to-disable-error-reporting/</link>
		<comments>http://www.ezcomputerhelp.org/how-to-disable-error-reporting/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 22:47:51 +0000</pubDate>
		<dc:creator>EZ Helper</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.ezcomputerhelp.org/how-to-disable-error-reporting/</guid>
		<description><![CDATA[1. Open Control Panel
2. Click on Performance and Maintenance.
3. Click on System.
4. Then click on the Advanced tab
5. Click on the error-reporting button on the bottom of the windows.
6. Select Disable error reporting.
7. Click OK
8. Click OK



Related posts:Quick Tip &#34;How to uninstall Norton SystemWorks&#34;
5.1 SURROUND SETUP W/VISTA
Vista Error Code 0&#215;80240016 While Updating Windows Defender may [...]


Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/quick-tip-how-to-uninstall-norton-systemworks/' rel='bookmark' title='Permanent Link: Quick Tip &#34;How to uninstall Norton SystemWorks&#34;'>Quick Tip &#34;How to uninstall Norton SystemWorks&#34;</a></li>
<li><a href='http://www.ezcomputerhelp.org/51-surround-setup-wvista/' rel='bookmark' title='Permanent Link: 5.1 SURROUND SETUP W/VISTA'>5.1 SURROUND SETUP W/VISTA</a></li>
<li><a href='http://www.ezcomputerhelp.org/vista-error-code-0x80240016-while-updateing-windows-defender-may-be-a-skype-problem/' rel='bookmark' title='Permanent Link: Vista Error Code 0&#215;80240016 While Updating Windows Defender may be a Skype Problem'>Vista Error Code 0&#215;80240016 While Updating Windows Defender may be a Skype Problem</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>1. Open Control Panel<br />
2. Click on Performance and Maintenance.<br />
3. Click on System.<br />
4. Then click on the Advanced tab<br />
5. Click on the error-reporting button on the bottom of the windows.<br />
6. Select Disable error reporting.<br />
7. Click OK<br />
8. Click OK</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/u9yb3cQcm-E&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/u9yb3cQcm-E&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>


<p>Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/quick-tip-how-to-uninstall-norton-systemworks/' rel='bookmark' title='Permanent Link: Quick Tip &#34;How to uninstall Norton SystemWorks&#34;'>Quick Tip &#34;How to uninstall Norton SystemWorks&#34;</a></li>
<li><a href='http://www.ezcomputerhelp.org/51-surround-setup-wvista/' rel='bookmark' title='Permanent Link: 5.1 SURROUND SETUP W/VISTA'>5.1 SURROUND SETUP W/VISTA</a></li>
<li><a href='http://www.ezcomputerhelp.org/vista-error-code-0x80240016-while-updateing-windows-defender-may-be-a-skype-problem/' rel='bookmark' title='Permanent Link: Vista Error Code 0&#215;80240016 While Updating Windows Defender may be a Skype Problem'>Vista Error Code 0&#215;80240016 While Updating Windows Defender may be a Skype Problem</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ezcomputerhelp.org/how-to-disable-error-reporting/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Select the Right Parts Before Building your new computer.</title>
		<link>http://www.ezcomputerhelp.org/how-to-select-the-right-parts-before-building-your-new-computer/</link>
		<comments>http://www.ezcomputerhelp.org/how-to-select-the-right-parts-before-building-your-new-computer/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 01:26:23 +0000</pubDate>
		<dc:creator>EZ Helper</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://www.ezcomputerhelp.org/how-to-select-the-right-parts-before-building-your-new-computer/</guid>
		<description><![CDATA[Wartex8 shows you good websites to buy and find information about creating your own computer.



Related posts:How to record the video and audio from your computer.&#8221;Record what you see and hear from the computer&#8221;



Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/how-to-record-the-video-and-audio-from-your-computerrecord-what-you-see-and-hear-from-the-computer/' rel='bookmark' title='Permanent Link: How to record the video and audio from your computer.&#8221;Record what you see and hear from the computer&#8221;'>How to record the video and audio from your computer.&#8221;Record what you see and hear from the computer&#8221;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="video_description_text"><a href="http://www.revver.com/u/Wartex8/" target="_blank">Wartex8</a> shows you good websites to buy and find information about creating your own computer.</span></p>
<p><script src="http://flash.revver.com/player/1.0/player.js?mediaId:743965;affiliateId:111951;backColor:#000000;frontColor:#ffffff;gradColor:#000000;width:425;height:355;shareUrl:revver;" type="text/javascript"></script></p>


<p>Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/how-to-record-the-video-and-audio-from-your-computerrecord-what-you-see-and-hear-from-the-computer/' rel='bookmark' title='Permanent Link: How to record the video and audio from your computer.&#8221;Record what you see and hear from the computer&#8221;'>How to record the video and audio from your computer.&#8221;Record what you see and hear from the computer&#8221;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ezcomputerhelp.org/how-to-select-the-right-parts-before-building-your-new-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to record the video and audio from your computer.&#8221;Record what you see and hear from the computer&#8221;</title>
		<link>http://www.ezcomputerhelp.org/how-to-record-the-video-and-audio-from-your-computerrecord-what-you-see-and-hear-from-the-computer/</link>
		<comments>http://www.ezcomputerhelp.org/how-to-record-the-video-and-audio-from-your-computerrecord-what-you-see-and-hear-from-the-computer/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 00:36:39 +0000</pubDate>
		<dc:creator>EZ Helper</dc:creator>
				<category><![CDATA[How to Video]]></category>
		<category><![CDATA[How to?]]></category>
		<category><![CDATA[Video Capture]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ezcomputerhelp.org/how-to-record-the-video-and-audio-from-your-computerrecord-what-you-see-and-hear-from-the-computer/</guid>
		<description><![CDATA[Thank you   			  knockbridgeman for this video.
Info from the YouTube post.
This FREE software enables you to record the stuff on your computer
screen without using a video camera.
It can also believe it or not record sound.



Related posts:How to use MSCONFIG to speed up your PC. Make your computer Faster!
Light Saber Keyboard Sliding sounds [...]


Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/how-to-use-msconfig-to-speed-up-your-pc-make-your-computer-faster/' rel='bookmark' title='Permanent Link: How to use MSCONFIG to speed up your PC. Make your computer Faster!'>How to use MSCONFIG to speed up your PC. Make your computer Faster!</a></li>
<li><a href='http://www.ezcomputerhelp.org/light-saber-keyboard-sliding-sounds-on-att-tilt-htc-tytn2-or-htc-kaiser-windows-mobile-6/' rel='bookmark' title='Permanent Link: Light Saber Keyboard Sliding sounds on AT&#038;T Tilt (HTC TyTN2 or HTC Kaiser) Windows Mobile 6'>Light Saber Keyboard Sliding sounds on AT&#038;T Tilt (HTC TyTN2 or HTC Kaiser) Windows Mobile 6</a></li>
<li><a href='http://www.ezcomputerhelp.org/fraps/' rel='bookmark' title='Permanent Link: Fraps'>Fraps</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Thank you <span class="normalLabel"> </span> 			  <a href="http://www.youtube.com/profile?user=knockbridgeman" onclick="_hbLink('ChannelNameLink','Watch3ChannelVideos');">knockbridgeman</a> for this video.</p>
<p>Info from the YouTube post.</p>
<p>This FREE software enables you to record the stuff on your computer<br />
screen without using a video camera.<br />
It can also believe it or not record sound.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Yfh0hK71idE&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Yfh0hK71idE&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>


<p>Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/how-to-use-msconfig-to-speed-up-your-pc-make-your-computer-faster/' rel='bookmark' title='Permanent Link: How to use MSCONFIG to speed up your PC. Make your computer Faster!'>How to use MSCONFIG to speed up your PC. Make your computer Faster!</a></li>
<li><a href='http://www.ezcomputerhelp.org/light-saber-keyboard-sliding-sounds-on-att-tilt-htc-tytn2-or-htc-kaiser-windows-mobile-6/' rel='bookmark' title='Permanent Link: Light Saber Keyboard Sliding sounds on AT&#038;T Tilt (HTC TyTN2 or HTC Kaiser) Windows Mobile 6'>Light Saber Keyboard Sliding sounds on AT&#038;T Tilt (HTC TyTN2 or HTC Kaiser) Windows Mobile 6</a></li>
<li><a href='http://www.ezcomputerhelp.org/fraps/' rel='bookmark' title='Permanent Link: Fraps'>Fraps</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ezcomputerhelp.org/how-to-record-the-video-and-audio-from-your-computerrecord-what-you-see-and-hear-from-the-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Reset the iPod: &#8220;My iPod won&#8217;t turn on or off&#8221;</title>
		<link>http://www.ezcomputerhelp.org/how-to-reset-the-ipod-my-ipod-wont-turn-on-or-off/</link>
		<comments>http://www.ezcomputerhelp.org/how-to-reset-the-ipod-my-ipod-wont-turn-on-or-off/#comments</comments>
		<pubDate>Sat, 23 Jun 2007 16:54:20 +0000</pubDate>
		<dc:creator>EZ Helper</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://ezcomputerhelp.org/2007/06/23/how-to-reset-the-ipod-my-ipod-wont-turn-on-or-off/</guid>
		<description><![CDATA[
My iPod won&#8217;t turn on? My iPod won&#8217;t turn off?  Sometimes iPod&#8217;s &#8220;will not turn on&#8221; or will &#8220;lock up&#8221; and just freezes. But thanks to Apple we can fix this most of the time just by resetting it. Follow the steps below on how to get your iPod to turn or or unfreeze.Make [...]


Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/ipod-disk-mode/' rel='bookmark' title='Permanent Link: iPod Disk Mode'>iPod Disk Mode</a></li>
<li><a href='http://www.ezcomputerhelp.org/accessing-your-ipods-diagnostics/' rel='bookmark' title='Permanent Link: Accessing your iPod&#8217;s Diagnostics'>Accessing your iPod&#8217;s Diagnostics</a></li>
<li><a href='http://www.ezcomputerhelp.org/ipod-reset-utility-to-restore-ipods/' rel='bookmark' title='Permanent Link: iPod Reset Utility to restore iPods'>iPod Reset Utility to restore iPods</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://ezcomputerhelp.org/wp-content/uploads/2007/06/ipod2.jpg" onclick="return false;" title="Direct link to file"><img src="http://ezcomputerhelp.org/wp-content/uploads/2007/06/ipod2.thumbnail.jpg" alt="ipod2.jpg" width="120" height="126" /></a></p>
<p>My iPod won&#8217;t turn on? My iPod won&#8217;t turn off?  Sometimes iPod&#8217;s &#8220;will not turn on&#8221; or will &#8220;lock up&#8221; and just freezes. But thanks to Apple we can fix this most of the time just by resetting it. Follow the steps below on how to get your iPod to turn or or unfreeze.Make sure that your<a href="http://ezcomputerhelp.org/category/ipod/" target="_blank"> iPod</a> is paused or the Hold switch is in the Unlocked position (&#8220;away from the headphone jack&#8221;). Now try turning it on. If it still will not turn on, try to Reset or (reboot) the device.</p>
<p>How to reset iPod: 1Gen to 3Gen<br />
1. Disconnect iPod from the computer (if connected).<br />
2. Turn your hold switch is off by sliding the switch away from the headphone jack.<br />
3. Press and hold the following combination of  buttons simultaneously for approximately 6 to 11 seconds (Play/Pause and Menu buttons)(you my see a apple logo pop up).</p>
<p><a href="http://ezcomputerhelp.org/wp-content/uploads/2007/06/ipod.jpg" onclick="return false;" title="Direct link to file"><img src="http://ezcomputerhelp.org/wp-content/uploads/2007/06/ipod.thumbnail.jpg" alt="ipod.jpg" width="123" height="128" /></a></p>
<p>How to reset an iPod with a Click Wheel, including:</p>
<p>Fifth Generation iPod (iPod with video)<br />
iPod nano (Second Generation)<br />
iPod nano<br />
iPod with color display (iPod photo)<br />
iPod (Click Wheel)<br />
iPod mini<br />
iPod mini (Second Generation)<br />
iPod 4G+ (Photo, Nano, Video, and Mini)</p>
<p>1. Disconnect iPod from the computer (if connected).<br />
2. Toggle the Hold switch on and off. (Slide it to Hold, then turn it off again.)<br />
3. Press and hold the Menu and Center (Select) buttons simultaneously until the Apple logo appears, about 6 to 10 seconds. You may need to repeat this step.</p>
<p>How to reset an <strong>iPod Shuffle</strong>:</p>
<p>1. Disconnect from the computer (if connected).<br />
2.  Turn it off, (wait 6 seconds) Turn it on.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/-XvCguAzvmk&#038;hl=en"></param><embed src="http://www.youtube.com/v/-XvCguAzvmk&#038;hl=en" type="application/x-shockwave-flash" width="425" height="344"></embed></object></p>
<p>If you would like to see a video from the Apple site click <a href="http://www.apple.com/support/ipod/tutorials/troubleshooting.html" target="_blank">this</a>.</p>


<p>Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/ipod-disk-mode/' rel='bookmark' title='Permanent Link: iPod Disk Mode'>iPod Disk Mode</a></li>
<li><a href='http://www.ezcomputerhelp.org/accessing-your-ipods-diagnostics/' rel='bookmark' title='Permanent Link: Accessing your iPod&#8217;s Diagnostics'>Accessing your iPod&#8217;s Diagnostics</a></li>
<li><a href='http://www.ezcomputerhelp.org/ipod-reset-utility-to-restore-ipods/' rel='bookmark' title='Permanent Link: iPod Reset Utility to restore iPods'>iPod Reset Utility to restore iPods</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ezcomputerhelp.org/how-to-reset-the-ipod-my-ipod-wont-turn-on-or-off/feed/</wfw:commentRss>
		<slash:comments>560</slash:comments>
		</item>
		<item>
		<title>How to Defragment Your Disk Drive</title>
		<link>http://www.ezcomputerhelp.org/how-to-defragment-your-disk-drive/</link>
		<comments>http://www.ezcomputerhelp.org/how-to-defragment-your-disk-drive/#comments</comments>
		<pubDate>Sun, 17 Jun 2007 00:02:48 +0000</pubDate>
		<dc:creator>EZ Helper</dc:creator>
				<category><![CDATA[Defragment]]></category>
		<category><![CDATA[How to?]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://ezcomputerhelp.org/2007/06/16/how-to-defragment-your-disk-drive/</guid>
		<description><![CDATA[

1.
Open My Computer.


2.
Right-click the local disk volume that you want to 				defragment, and then click Properties.


3.
On the Tools tab, click Defragment 				Now.


4.
Click Defragment.




Related posts:How to Defragment the iPod Video 5th Generation
Windows System Restore
Got a full hard disk? SpaceMonger might just be the answer.



Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/how-to-defragment-the-ipod-video-5th-generation/' rel='bookmark' title='Permanent Link: How to Defragment the iPod Video 5th Generation'>How to Defragment the iPod Video 5th Generation</a></li>
<li><a href='http://www.ezcomputerhelp.org/windows-system-restore/' rel='bookmark' title='Permanent Link: Windows System Restore'>Windows System Restore</a></li>
<li><a href='http://www.ezcomputerhelp.org/got-a-full-hard-disk-spacemonger-might-just-be-the-answer/' rel='bookmark' title='Permanent Link: Got a full hard disk? SpaceMonger might just be the answer.'>Got a full hard disk? SpaceMonger might just be the answer.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<table class="list ol">
<tr>
<td class="number">1.</td>
<td class="text">Open My Computer.</td>
</tr>
<tr>
<td class="number">2.</td>
<td class="text">Right-click the local disk volume that you want to 				defragment, and then click <strong class="uiterm">Properties</strong>.</td>
</tr>
<tr>
<td class="number">3.</td>
<td class="text">On the <strong class="uiterm">Tools</strong> tab, click <strong class="uiterm">Defragment 				Now</strong>.</td>
</tr>
<tr>
<td class="number">4.</td>
<td class="text">Click <strong class="uiterm">Defragment</strong>.</td>
</tr>
</table>


<p>Related posts:<ol><li><a href='http://www.ezcomputerhelp.org/how-to-defragment-the-ipod-video-5th-generation/' rel='bookmark' title='Permanent Link: How to Defragment the iPod Video 5th Generation'>How to Defragment the iPod Video 5th Generation</a></li>
<li><a href='http://www.ezcomputerhelp.org/windows-system-restore/' rel='bookmark' title='Permanent Link: Windows System Restore'>Windows System Restore</a></li>
<li><a href='http://www.ezcomputerhelp.org/got-a-full-hard-disk-spacemonger-might-just-be-the-answer/' rel='bookmark' title='Permanent Link: Got a full hard disk? SpaceMonger might just be the answer.'>Got a full hard disk? SpaceMonger might just be the answer.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ezcomputerhelp.org/how-to-defragment-your-disk-drive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
