Click here to Skip to main content
15,912,977 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Ad blocker for Edge browser Pin
Sander Rossel28-Oct-15 8:10
professionalSander Rossel28-Oct-15 8:10 
GeneralRe: Ad blocker for Edge browser Pin
Joan M28-Oct-15 8:13
professionalJoan M28-Oct-15 8:13 
GeneralRe: Ad blocker for Edge browser Pin
#realJSOP28-Oct-15 8:49
professional#realJSOP28-Oct-15 8:49 
GeneralRe: Ad blocker for Edge browser Pin
Joan M28-Oct-15 8:56
professionalJoan M28-Oct-15 8:56 
GeneralRe: Ad blocker for Edge browser Pin
FIorian Schneidereit28-Oct-15 9:57
FIorian Schneidereit28-Oct-15 9:57 
GeneralRe: Ad blocker for Edge browser Pin
Dan Neely28-Oct-15 10:07
Dan Neely28-Oct-15 10:07 
GeneralRe: Ad blocker for Edge browser Pin
FIorian Schneidereit28-Oct-15 10:18
FIorian Schneidereit28-Oct-15 10:18 
GeneralThanks! Pin
jsc422-Nov-15 5:45
professionaljsc422-Nov-15 5:45 
That has done the trick nicely. Pages load much faster. I had one minor issue with a site that I needed to access being blocked, so I have written a little batch file to merge my own hosts file (that contains my home network) with the MVP one and to incorporate a temporary overrides file as well. Just in case it might be of use to anyone else, I've copied it below.

@echo off
rem	Create a new hosts file concatenated from
rem		hosts.local	- local hosts file
rem		hosts.mvp	- host file from ad blocking lists site
rem		hosts.exceptions	- overrides to undo blockings

cd "\Windows\System32\drivers\etc"

echo # +--------------------------------+ >hosts.tmp
echo # ¦ hosts entries from hosts.local ¦ >>hosts.tmp
echo # +--------------------------------+ >>hosts.tmp
echo # >>hosts.tmp

type hosts.local >>hosts.tmp

echo # >>hosts.tmp
echo # +------------------------------+ >>hosts.tmp
echo # ¦ hosts entries from hosts.mvp ¦ >>hosts.tmp
echo # +------------------------------+ >>hosts.tmp
echo # >>hosts.tmp

type hosts.mvp >>hosts.tmp

echo # >>hosts.tmp
echo # +-------------------------------------+ >>hosts.tmp
echo # ¦ hosts entries from hosts.exceptions ¦ >>hosts.tmp
echo # +-------------------------------------+ >>hosts.tmp
echo # >>hosts.tmp

type hosts.exceptions >>hosts.tmp

if exist hosts copy /y hosts hosts.bak
copy /y hosts.tmp hosts

GeneralRe: Thanks! Pin
Joan M2-Nov-15 6:03
professionalJoan M2-Nov-15 6:03 
GeneralRe: Ad blocker for Edge browser Pin
#realJSOP28-Oct-15 8:48
professional#realJSOP28-Oct-15 8:48 
GeneralRe: Ad blocker for Edge browser Pin
Indivara28-Oct-15 13:42
professionalIndivara28-Oct-15 13:42 
GeneralRe: Ad blocker for Edge browser Pin
ledtech328-Oct-15 17:01
ledtech328-Oct-15 17:01 
GeneralRe: Ad blocker for Edge browser Pin
dannomanno29-Oct-15 3:44
dannomanno29-Oct-15 3:44 
GeneralRe: Ad blocker for Edge browser Pin
dannomanno29-Oct-15 4:03
dannomanno29-Oct-15 4:03 
JokeI had an interview earlier... Pin
R. Giskard Reventlov28-Oct-15 7:01
R. Giskard Reventlov28-Oct-15 7:01 
GeneralRe: I had an interview earlier... Pin
glennPattonWork328-Oct-15 7:20
professionalglennPattonWork328-Oct-15 7:20 
GeneralRe: I had an interview earlier... Pin
jeron128-Oct-15 7:22
jeron128-Oct-15 7:22 
GeneralRe: I had an interview earlier... Pin
Tim Carmichael28-Oct-15 7:22
Tim Carmichael28-Oct-15 7:22 
GeneralRe: I had an interview earlier... Pin
glennPattonWork328-Oct-15 7:27
professionalglennPattonWork328-Oct-15 7:27 
GeneralRe: I had an interview earlier... Pin
OriginalGriff28-Oct-15 7:33
mveOriginalGriff28-Oct-15 7:33 
GeneralRe: I had an interview earlier... Pin
glennPattonWork328-Oct-15 7:56
professionalglennPattonWork328-Oct-15 7:56 
GeneralRe: I had an interview earlier... Pin
OriginalGriff28-Oct-15 9:01
mveOriginalGriff28-Oct-15 9:01 
GeneralRe: I had an interview earlier... Pin
KarstenK28-Oct-15 7:40
mveKarstenK28-Oct-15 7:40 
GeneralRe: I had an interview earlier... Pin
  Forogar  28-Oct-15 7:56
professional  Forogar  28-Oct-15 7:56 
GeneralRe: I had an interview earlier... Pin
User 483504728-Oct-15 7:56
User 483504728-Oct-15 7:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.