forked from StevenBlack/hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makeHostsWindows.bat
37 lines (34 loc) · 1.31 KB
/
makeHostsWindows.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@ECHO OFF
if not exist "%WINDIR%\py.exe" (
ECHO :: ERROR :: Python 3.5 Runtime NOT FOUND...
ECHO :: ERROR :: Download and install lastest Python 3.5 for Windows from https://www.python.org/downloads/
ECHO :: ERROR :: Exit...
GOTO END
) ELSE (
GOTO PY35RT
)
:PY35RT
if not exist "%PROGRAMFILES%\python35\Python35.dll" (
ECHO :: ERROR :: Python 3.5 Runtime NOT FOUND...
ECHO :: ERROR :: Download and install lastest Python 3.5 for Windows from https://www.python.org/downloads/
ECHO :: ERROR :: Exit...
GOTO END
) ELSE (
ECHO :: INFO :: Python 3.5 Runtime was found!
ECHO :: INFO :: Running main script...
GOTO :UPDATES
)
:UPDATES
::These create various alternate hosts files by combining and adding the gambling, porn, and social media extensions.
updateHostsFile.py -a -z -o alternates\gambling -e gambling
updateHostsFile.py -a -z -n -o alternates\porn -e porn
updateHostsFile.py -a -z -n -o alternates\social -e social
updateHostsFile.py -a -z -n -o alternates\gambling-porn -e gambling porn
updateHostsFile.py -a -z -n -o alternates\gambling-social -e gambling social
updateHostsFile.py -a -z -n -o alternates\porn-social -e porn social
updateHostsFile.py -a -z -n -o alternates\gambling-porn-social -e gambling porn social
updateHostsFile.py -a -z -n
::Update the readmes.
updateReadme.py
GOTO END
:END