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
Are there a list of changes?
ReplyDeleteTimothy ... sorry no there is no "change.log" ...
ReplyDeleteI generated my own change log. Thanks. I will blindly trust your judgement.
DeletePS 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