<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to block certain websites</title>
	<atom:link href="http://askabouttech.com/how-to-block-certain-websites/feed/" rel="self" type="application/rss+xml" />
	<link>http://askabouttech.com/how-to-block-certain-websites/</link>
	<description>Easy and Simple Instructions for Tech Newbies</description>
	<lastBuildDate>Wed, 08 Feb 2012 00:34:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ermias</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-6066</link>
		<dc:creator>Ermias</dc:creator>
		<pubDate>Sat, 10 Dec 2011 04:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-6066</guid>
		<description>using the host file to block the site, it works nicely 10Q ,but how can I  block some sites with time duration any help. 10Q in Advance.</description>
		<content:encoded><![CDATA[<p>using the host file to block the site, it works nicely 10Q ,but how can I  block some sites with time duration any help. 10Q in Advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-5812</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 30 Sep 2011 21:03:17 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-5812</guid>
		<description>1.Go to your HOSTS file which is located at:


C:\WINDOWS\SYSTEM32\DRIVERS\ETC for windows Vista/windows 7  and XP

Type an entry about a website you want to block.
The entry must have two parts: an IP address and the address of the website you want to block. Choose 127.0.0.1 as an IP address, leave a space and then type the address of the rogue website. Here’s an example:
127.0.0.1    www.facebook.com.

# Copyright (c) 1993-1999 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each...# entry should be kept on an individual line. The IP address should.
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one.
# space.
#
# Additionally, comments (such as these) may be inserted on individual.
# lines or following the machine name denoted by a &#039;#&#039; symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server.
# 38.25.63.10 x.acme.com # x client host.

127.0.0.1 localhost.
127.0.0.1 www.facebook.com.
127.0.0.1 www.youtube.com.



Extra step: Windows XP/2000 only

In XP and 2000, the DNS Client (a system service), will make your machine come to a grinding hault if your HOSTS file is too large. This service is unnecessary and can be stopped and disabled. Go to Start &gt; Run &gt; enter “services.msc” then hit [Enter]

Navigate to DNS Client, right-click it, select Properties, under Start-up Type, select Manual. Click Apply. Then below that, click the Stop button. You should do this before you save a large list of servers to your HOSTS file.

Disabling/Enabling the HOSTS blocking

If you ever need to disable the blocking, just rename the hosts file to anything. I usually rename it to hosts.disable. After you do that, you need to restart your browser to see the changes. To enable it again, just rename it back to hosts.

You could also write a script to do this for you. An example called disable.bat:

cd C:\WINDOWS\system32\drivers\etc &amp;&amp; ren hosts hosts.disable

And another example called enable.bat:

cd C:\WINDOWS\system32\drivers\etc &amp;&amp; ren hosts.disable hosts



enjoy people... ;-)</description>
		<content:encoded><![CDATA[<p>1.Go to your HOSTS file which is located at:</p>
<p>C:\WINDOWS\SYSTEM32\DRIVERS\ETC for windows Vista/windows 7  and XP</p>
<p>Type an entry about a website you want to block.<br />
The entry must have two parts: an IP address and the address of the website you want to block. Choose 127.0.0.1 as an IP address, leave a space and then type the address of the rogue website. Here’s an example:<br />
127.0.0.1    <a href="http://www.facebook.com" rel="nofollow">http://www.facebook.com</a>.</p>
<p># Copyright (c) 1993-1999 Microsoft Corp.<br />
#<br />
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.<br />
#<br />
# This file contains the mappings of IP addresses to host names. Each&#8230;# entry should be kept on an individual line. The IP address should.<br />
# be placed in the first column followed by the corresponding host name.<br />
# The IP address and the host name should be separated by at least one.<br />
# space.<br />
#<br />
# Additionally, comments (such as these) may be inserted on individual.<br />
# lines or following the machine name denoted by a &#8216;#&#8217; symbol.<br />
#<br />
# For example:<br />
#<br />
# 102.54.94.97 rhino.acme.com # source server.<br />
# 38.25.63.10 x.acme.com # x client host.</p>
<p>127.0.0.1 localhost.<br />
127.0.0.1 <a href="http://www.facebook.com" rel="nofollow">http://www.facebook.com</a>.<br />
127.0.0.1 <a href="http://www.youtube.com" rel="nofollow">http://www.youtube.com</a>.</p>
<p>Extra step: Windows XP/2000 only</p>
<p>In XP and 2000, the DNS Client (a system service), will make your machine come to a grinding hault if your HOSTS file is too large. This service is unnecessary and can be stopped and disabled. Go to Start &gt; Run &gt; enter “services.msc” then hit [Enter]</p>
<p>Navigate to DNS Client, right-click it, select Properties, under Start-up Type, select Manual. Click Apply. Then below that, click the Stop button. You should do this before you save a large list of servers to your HOSTS file.</p>
<p>Disabling/Enabling the HOSTS blocking</p>
<p>If you ever need to disable the blocking, just rename the hosts file to anything. I usually rename it to hosts.disable. After you do that, you need to restart your browser to see the changes. To enable it again, just rename it back to hosts.</p>
<p>You could also write a script to do this for you. An example called disable.bat:</p>
<p>cd C:\WINDOWS\system32\drivers\etc &amp;&amp; ren hosts hosts.disable</p>
<p>And another example called enable.bat:</p>
<p>cd C:\WINDOWS\system32\drivers\etc &amp;&amp; ren hosts.disable hosts</p>
<p>enjoy people&#8230; <img src='http://askabouttech.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-5712</link>
		<dc:creator>Jimmy</dc:creator>
		<pubDate>Fri, 02 Sep 2011 08:08:35 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-5712</guid>
		<description>On start-up, press F8 &amp; then go into Safe Mode. Then you can edit the host file &amp; save without any probs. 
Enjoy</description>
		<content:encoded><![CDATA[<p>On start-up, press F8 &amp; then go into Safe Mode. Then you can edit the host file &amp; save without any probs.<br />
Enjoy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adrian</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-5320</link>
		<dc:creator>adrian</dc:creator>
		<pubDate>Fri, 01 Apr 2011 04:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-5320</guid>
		<description>Even though I&#039;m the administrator on this computer, its still giving me an error message telling me to contact the administrator.</description>
		<content:encoded><![CDATA[<p>Even though I&#8217;m the administrator on this computer, its still giving me an error message telling me to contact the administrator.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anonymous</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-5029</link>
		<dc:creator>anonymous</dc:creator>
		<pubDate>Mon, 14 Feb 2011 03:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-5029</guid>
		<description>How do you unblock it?</description>
		<content:encoded><![CDATA[<p>How do you unblock it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ernel</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-3336</link>
		<dc:creator>ernel</dc:creator>
		<pubDate>Thu, 01 Apr 2010 13:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-3336</guid>
		<description>how to block the pornographic websites??</description>
		<content:encoded><![CDATA[<p>how to block the pornographic websites??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sharon</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-3289</link>
		<dc:creator>sharon</dc:creator>
		<pubDate>Fri, 19 Mar 2010 03:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-3289</guid>
		<description>How to block tagged site in my computer?</description>
		<content:encoded><![CDATA[<p>How to block tagged site in my computer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhijeet</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-3211</link>
		<dc:creator>Abhijeet</dc:creator>
		<pubDate>Sat, 06 Mar 2010 06:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-3211</guid>
		<description>Are the websites blocked by this method can&#039;t be opened through online proxy servers????</description>
		<content:encoded><![CDATA[<p>Are the websites blocked by this method can&#8217;t be opened through online proxy servers????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: girly</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-3055</link>
		<dc:creator>girly</dc:creator>
		<pubDate>Fri, 05 Feb 2010 11:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-3055</guid>
		<description>why is this step does&#039;nt block some of the websites.. like youporn nd other pornographic website?</description>
		<content:encoded><![CDATA[<p>why is this step does&#8217;nt block some of the websites.. like youporn nd other pornographic website?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://askabouttech.com/how-to-block-certain-websites/comment-page-1/#comment-3048</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Thu, 04 Feb 2010 05:58:48 +0000</pubDate>
		<guid isPermaLink="false">http://askabouttech.com/?p=167#comment-3048</guid>
		<description>I just want to comment on the assertion that &quot;Vista users must disable UAC and have Administrative rights before modifying the hosts file.&quot; That&#039;s only half true. The task can be accomplished just as easily by running Notepad or whatever text editor you want to use with elevated privileges. In terms of best practices, you probably shouldn&#039;t be telling people to disable UAC. At the very least, you should tell them to re-enable it after disabling it. I know UAC isn&#039;t popular, but it does serve a purpose.</description>
		<content:encoded><![CDATA[<p>I just want to comment on the assertion that &#8220;Vista users must disable UAC and have Administrative rights before modifying the hosts file.&#8221; That&#8217;s only half true. The task can be accomplished just as easily by running Notepad or whatever text editor you want to use with elevated privileges. In terms of best practices, you probably shouldn&#8217;t be telling people to disable UAC. At the very least, you should tell them to re-enable it after disabling it. I know UAC isn&#8217;t popular, but it does serve a purpose.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  askabouttech.com/how-to-block-certain-websites/feed/ ) in 0.33740 seconds, on Feb 11th, 2012 at 12:37 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 11th, 2012 at 1:37 am UTC -->
