标签:windows 批处理
@echo off &setlocal enabledelayedexpansion echo 修改hosts文件 ::type c:\windows\system32\drivers\etc\hosts^ | findstr /n ".*" :main echo =============================== echo 请选择需要进行的操作 echo =============================== echo. echo 1. 添加hosts 2. 修改hosts echo. echo 3. 清空hosts 4. 显示当前hosts内容 echo. echo 5. 退出 6. 清屏 choice /c:123456 /m:请输入数字: if errorlevel 6 goto clear if errorlevel 5 goto end if errorlevel 4 goto type if errorlevel 3 goto del if errorlevel 2 goto change if errorlevel 1 goto add :add echo ------------------------------- set /p domain=请输入域名: echo ------------------------------- set /p ip=请输入IP: echo ------------------------------- echo %ip% %domain% >>c:\windows\system32\drivers\etc\hosts if errorlevel 0 (echo 修改成功) else (echo 修改失败) choice /c:123 /m:1返回,2ping测试,3退出: if errorlevel 3 goto end if errorlevel 2 goto ping if errorlevel 1 goto main :ping echo ----------------开始进行ping测试---------------- for /f "delims=[] tokens=2 " %%i in (‘ping -n 1 %domain%^|findstr [‘) do (if %ip% == %%i (echo ----------------ping测试成功----------------) else (echo ----------------ping测试失败,请重新修改----------------)) goto choice :type echo 当前hosts内容: echo ------------------------------- type c:\windows\system32\drivers\etc\hosts^ | findstr /n ".*" echo ------------------------------- echo. goto choice :clear cls goto main :del del /Q c:\windows\system32\drivers\etc\hosts if errorlevel 0 (echo 清除成功) else (echo 清除失败) type nul >c:\windows\system32\drivers\etc\hosts goto choice :choice choice /c:12 /m:继续请按1,,退出请按2 REM 应先判断数值最高的错误码 if errorlevel 2 goto end if errorlevel 1 goto main :end exit相关文章
- 使用AWS S3 SDK for .NET从Amazon S3下载并行批处理文件
- 如何把Windows CE安装文件下载到本地进行安装
- COREDNS小记
- 安装Windows Server 2022 - 初学者系列 - 学习者系列文章
- SpringBoot访问windows共享文件
- 在将repo复制到windows上时,如何阻止git添加回车符?
- windows右键菜单扩展容器[开源]
- 配置 Windows 下的 nodejs C++ 模块编译环境 安装 node-gyp
- windows安装PHP5.4.8+Apache2.4.3+Mysql5.5.28
- Windows下使用Visual Studio 2010 编译ffmpeg全过程