【教程】禁止不良网页
@echo offecho 今天是%date%, 现在是北京时间:%time%
echo.
@echo 1: 添加要屏蔽的网址
@echo 2: 恢复屏蔽的所有网址
@echo 3: 退出
echo.
@set /p enter=请输入你的选择:
@if /i "%enter%"=="1" goto cnhacker
@if /i "%enter%"=="2" goto sky
@if /i "%enter%"=="3" goto bye
:cnhacker
set/p a=请输入要拒绝的不良网站:
echo 127.0.0.1 %a% >>c:\windows\system32\drivers\etc\hosts.txt
@copy c:\windows\system32\drivers\etc\hosts.txt c:\windows\system32\drivers\etc\hosts /y>nul
echo 已经设置完成
echo 1 返回继续设置
echo 2 退出
set /p sky=输入:
@if /i "%sky%"=="1" goto cnhacker
@if /i "%sky%"=="2" goto bye
pause>nul
exit
:sky
echo 开始恢复
echo 恢复中.....
del c:\windows\system32\drivers\etc\hosts.txt>nul
del c:\windows\system32\drivers\etc\hosts>nul
echo 127.0.0.1 localhost >c:\windows\system32\drivers\etc\hosts.txt
echo 成功恢复
pause>nul
:bye
exit