quinta-feira, 14 de abril de 2016

Como Adicionar Entradas de Host no Windows para bloquear sites ou direcionar sites internos


  1. Salve o codigo abaixo no bloco de notas como .bat
  2. Execute como Administrador ou inserir o script como logon em uma GPO. 

@echo off
SET NOVO=#  127.0.0.1 http://pt-br.youtube.com/
find /i "%NOVO%" %systemroot%\system32\drivers\etc\hosts
if NOT %ERRORLEVEL% EQU 0 (
 ECHO %NOVO% >>  %systemroot%\system32\drivers\etc\hosts
)
SET NOVO=#  127.0.0.1 http://pt-br.facebook.com/
find /i "%NOVO%" %systemroot%\system32\drivers\etc\hosts
if NOT %ERRORLEVEL% EQU 0 (
 ECHO %NOVO% >>  %systemroot%\system32\drivers\etc\hosts
)
SET NOVO=#  127.0.0.1 https://https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=http://mail.google.com/mail/&scc=1&ltmpl=default&ltmplcache=2
find /i "%NOVO%" %systemroot%\system32\drivers\etc\hosts
if NOT %ERRORLEVEL% EQU 0 (
 ECHO %NOVO% >>  %systemroot%\system32\drivers\etc\hosts
)
SET NOVO=#  127.0.0.1 gmail.com
find /i "%NOVO%" %systemroot%\system32\drivers\etc\hosts
if NOT %ERRORLEVEL% EQU 0 (
 ECHO %NOVO% >>  %systemroot%\system32\drivers\etc\hosts
)

Nenhum comentário:

Postar um comentário

Como mover senhas e favoritos entre Microsoft Edge Chromium

  Press  Win + R  keys to open up the  Run  dialog box. Type  %LocalAppData%\Microsoft\Edge\User Data  and press  enter . Move the  Default ...