修改 hosts 文件批处理脚本

在局域网内部测试 uchome,修改 hosts 文件批引访问。

要在每台机器都修改、保存 hosts 文件一遍,烦死了。只好找一个脚本处理。

在网上找了几个小时都没有找到适合的,倒而在百度百科里找到了很详细的批处理教程,自己边学边写,搞了一个出来。

@echo off
title  uchome@xiao   %date%

SET PATH=%SystemRoot%\system32\drivers\etc\hosts

:: 要添加的数据
SET put=192.168.1.23       uchome

cd %SystemRoot%\system32

:: 判断是否已存在
findstr "uchome" %PATH% && goto del
goto add
exit

:: set add********************************************
:add
:: 添加
echo %put% >> %PATH%
echo %put%
echo 添加成功
echo.
echo                ◇◇ uchome 指引添加完毕,按任意键退出◇◇
echo.                           
echo                http://uchome    广州美耶信息科技有限公司
pause > nul
exit

:: set del********************************************
:del
:: 删除
findstr /v "uchome" %PATH% > %PATH%
echo 删除成功
echo.
echo                ◇◇ uchome 指引删除完毕,按任意键退出◇◇
echo.                           
echo                http://uchome    广州美耶信息科技有限公司
pause > nul
exit

  

你可能感兴趣的:(百度,脚本)