Saturday, February 28, 2015

MVPS HOSTS File Update February 28-2015

The MVPS HOSTS file was recently updated [February 28-2015]
http://winhelp2002.mvps.org/hosts.htm


Download: hosts.zip (135 kb)
http://winhelp2002.mvps.org/hosts.zip


How To: Download and Extract the HOSTS file
http://winhelp2002.mvps.org/hosts2.htm


HOSTS File - Frequently Asked Questions
http://winhelp2002.mvps.org/hostsfaq.htm


Note: the "text" version (511 kb) makes a great resource for determining possible unwanted connections ...
http://winhelp2002.mvps.org/hosts.txt


Get notified when the MVPS HOSTS file is updated
http://winhelp2002.mvps.org/updates.htm


If you find the MVPS HOSTS file useful ... please consider a donation ...
http://winhelp2002.mvps.org/hosts.htm#donation

3 comments:

  1. Timothy ... sorry no there is no "change.log" ...

    ReplyDelete
    Replies
    1. I generated my own change log. Thanks. I will blindly trust your judgement.

      PS C:\> $OldHosts = Get-Content C:\Windows\System32\drivers\etc\hosts
      PS C:\> $NewHosts = Get-Content 'C:\users\tim\Downloads\hosts (1)\HOSTS'
      PS C:\> $Diff = compare $OldHosts $NewHosts
      PS C:\> $Diff | ? {$_.SideIndicator -eq '<='} | select {label='Removed';expression={$_.inputObject}} | sort Removed | Out-File HostsChanges.txt
      PS C:\> $Diff | ? {$_.SideIndicator -eq '=>'} | select {label='Added';expression={$_.inputObject}} | sort Added | Out-File HostsChanges.txt -Append

      Delete