From 0cf8659d2e63e4354c717f9af06c0cf0d3adafa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Przyby=C5=82?= Date: Wed, 15 Jun 2016 14:55:59 +0200 Subject: [PATCH] updateHostsWindows.bat: add file This script will create in first running backup of ORIGINAL/CURRENT hosts file in hosts.skel file if file does not exists. If hosts.skel file exists, then NEW copy with customized unified hosts file will be copied to proper path. Next DNS Cache will be refreshed. --- updateHostsWindows.bat | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 updateHostsWindows.bat diff --git a/updateHostsWindows.bat b/updateHostsWindows.bat new file mode 100644 index 000000000..2d23ebdcb --- /dev/null +++ b/updateHostsWindows.bat @@ -0,0 +1,14 @@ +:: This script will create in first running backup of ORIGINAL/CURRENT hosts file in hosts.skel file. +:: If hosts.skel file exists, then NEW copy with customized unified hosts file will be copied to proper path. +:: Next DNS Cache will be refreshed. +:: YOU NEED RUNNING THIS BAT FILE IN COMMAND LINE PROMPT WITH ADMINISTRATOR PRIVILIGES +@ECHO OFF +if not exist "%WINDIR%\System32\drivers\etc\hosts.skel" ( + COPY %WINDIR%\System32\drivers\etc\hosts %WINDIR%\System32\drivers\etc\hosts.skel + GOTO :CLEARDNS +) +:CLEARDNS + COPY hosts %WINDIR%\System32\drivers\etc\ + ipconfig /flushdns + GOTO END +:END \ No newline at end of file