码迷,mamicode.com
首页 > Windows程序 > 详细

windows 批处理小记

时间:2017-06-12 14:52:44      阅读:263      评论:0      收藏:0      [点我收藏+]

标签: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


本文出自 “天天向上” 博客,请务必保留此出处http://bshark.blog.51cto.com/10309374/1934401

windows 批处理小记

标签:windows   批处理   

原文地址:http://bshark.blog.51cto.com/10309374/1934401

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!