ghacks Technology News

How To Edit, Reset The Windows Hosts File

The question came just up again and I realized that I have never posted a tutorial about editing and reseting the Windows Hosts file. I’d like to take a look at the Host file’s functionality first.

The Windows Hosts file can be used to block or redirect hostnames. A hostname is the core part of a web address or local address, for instance ghacks.net or localhost. Each hosts file entry specifies an IP address and a hostname, which basically tells the system that the hostname should be resolved with that IP address.

The DNS server, that is usually queried, is bypassed for all entries in the Hosts file. Let me give you two examples where this may be beneficial. Users could block known advertising companies or spammers by redirecting requests to the local PC. This basically loads nothing when a website tries to load an advertisement, popup or other element.

Another example are web developers. Say you just moved your website to a new server and the IP changed in the process. DNS servers need up to 48 hours to propagate, which means that it is difficulty to test the website on the new server after the move if the DNS server is still redirecting the request to the old server. The web developer could assign the new IP address to the website to avoid the propagation issue. (Please see Work On Websites Before DNS Propagation for a detailed guide on that subject)

It has to be noted that the Hosts file can also be exploited by malicious software, either by redirecting the user from legit sites to questionable ones, or by blocking access to security software that they might need to remove those programs again from the PC.

The location of the Windows Hosts file

The Windows Hosts file is located under the following path:

%SystemRoot%\system32\drivers\etc\

The %SystemRoot% in the beginning is a variable that is set to the Windows directory. Most Windows users have installed the operating system on c:\windows which would mean that the hosts file can be found under c:\windows\system32\drivers\etc\hosts

It may be necessary to display hidden system folders if Windows Explorer is used to navigate to the folder. A click on Tools > Folder Options in Windows Explorer and a switch to the View tab opens a configuration menu where hidden folders can be set to be revealed. Locate “hide protected operating system files” and “hidden files and folders” and make sure that the former is unchecked, and that the latter is set to “Show hidden files, folders and drives”. The settings can be easily reversed this way when needed.

hidden folders

The Hosts file itself can be edited with any plain text editor, Notepad for instance which ships with Windows. You should check first if the Hosts file is write protected. This is done by right-clicking the file and selecting properties from the opening context menu.

Look at the attributes section of the General tab. The file is write protected if read-only is checked. If it is, remove the entry. If you keep the read-only setting it is not possible to edit or reset the hosts file. Remember to set the read-only attribute again once you are finished to prevent third party editing of the hosts file.

hosts properties

The default Windows Hosts file has no active entries. Please note that a line beginning with # is a comment line which will not be executed or processed.

windows hosts file

Editing the Windows Hosts file

Take a look at the examples in the comments. The syntax is always the same, first the IP address that you want to redirect the hostname to, then the hostname separated by at least one space.

  • To add entries to the hosts file you would enter the IP address first in the next blank line, followed by a space (or by pressing tab) and the hostname (which can be a domain name or localhost).
  • To delete Windows Hosts file entries select the whole line and press the delete button on the keyboard.
  • To edit individual entries click in the line of the mapping that you want to edit and make the changes.
  • To reset the hosts file simply remove all lines that are not comments. Microsoft has created a Fix-Ii solution to reset the hosts file which can be used instead. Users just have to execute the program once they have downloaded it to the local system. The main benefit is that they do not need to go through the manual process this way.

Please note that you need to save the changes before they become available. In Notepad you would select File > Save from the menu to do that.

And that’s how your edit and reset the Windows Hosts file. Please leave any open questions or comments in the comment section below.

Enjoyed the article?: Then sign-up for our free newsletter or RSS feed to kick off your day with the latest technology news and tips, or share the article with your friends and contacts on Facebook or Twitter.

Related Articles:

Windows Hosts File Optimizer
Upload Files To Multiple File Hosts
Swap Hosts Files Easily With Hosts Manager
Two Free File Hosts With FTP Access
A Windows Hosts Manager



About the Author:Martin Brinkmann is a journalist from Germany who founded Ghacks Technology News Back in 2005. He is passionate about all things tech and knows the Internet and computers like the back of his hand. You can follow Martin on Facebook or Twitter.

Author: , Sunday March 6, 2011 -
Tags:, ,


Responses so far:

  1. Joe says:

    I use HostsXpert to maintain the hosts file from MVPS as an adblocker. It blocks ads in all of the browsers I use (Firefox, Google Chrome, and, occassionally, IE or Opera). You can press a button in HostsXpert to check for an update to MVPS’s hosts file, another to download it and replace yours, it adds some great features to make it easier to edit your hosts file, and it’s portable. HostsXpert hasn’t been updated since 2008, but I’ve been using it with no problems on 64-bit Windows 7.

    HostsXpert: http://www.funkytoad.com/index.php?option=com_content&id=13

    MVPS Hosts: http://www.mvps.org/winhelp2002/hosts.htm

  2. sulasno says:

    in addition to HostsXpert I use BissHostsManager

  3. sulasno says:

    in addition to HostsXpert I also use BissHostsManager

  4. Toni says:

    I think the easiest way to edit a windows hosts files is open notepad as administrator. Then open hosts file from the correct path (c:\windows\system32\drivers\etc\hosts). That’s all.

  5. Barbarosa says:

    In my Vista 64 system, the hosts file itself does not have the read-only attribute set by default. Nevertheless, it *is* write-protected. It will not open in a text editor.

    I found out that it is the “etc” folder which is read-only, and I gained access to the hosts file by changing the folder attribute.

  6. randomhead says:

    nice to read , technical things the average user may not know of ! but handy for sure,, id love to see some more info on resetting different areas of win 7 64/32,, such as access permissions to drives as im sure mine have become corrupted somehow,,perhaps more tweaks to the firewall we can all do to secure it further too? :) such as disabling remote assist and remote desktop , which as a single use pc the average user has no need of , keep up the good work htg!

  7. randomhead says:

    aah sorry ghacks! i meant yous guys honest!

  8. will says:

    sometimes viruses can alter the permissions on the hosts file and you need to reset it , here’s a quick batchfile to do so.

    @echo off
    ECHO Resetting permissions on HOSTS file…
    echo,Y|cacls “%WinDir%system32driversetchosts” /G everyone:f
    attrib -s -h -r “%WinDir%system32driversetchosts”
    ECHO.
    Echo Now edit the HOSTS file then save it.
    pause
    notepad “%WinDir%system32driversetchosts
    attrib +s +h +r “%WinDir%system32driversetchosts”

  9. Mike says:

    Thanks for the post, i noted that when i edit the hosts file with notepad it changes to a .txt file. is that ok or am doing something wrong.

Leave a Reply   Follow Ghacks   Subscribe To Comment Rss

Subscribe without commenting

© 2005-2012 Ghacks.net. All Rights Reserved. Privacy Policy - About Us