1. 程式人生 > >bat 批處理修改host檔案

bat 批處理修改host檔案

在測試的時候,經常會遇到修改host 的情況,每次都開啟host手動新增,很繁瑣地,怎麼寫個批處理檔案,雙擊下就把host修改了呢,請看下面程式碼:

@echo off
color 0F
@attrib -r "%windir%\system32\drivers\etc\hosts"
@echo ######測試配置 beg >>"%windir%\system32\drivers\etc\hosts" 
@echo 59.213.55.39	www111.help.do.com >>"%windir%\system32\drivers\etc\hosts" 
@echo 59.213.55.39	query.help.do.com >>"%windir%\system32\drivers\etc\hosts"
@echo ######測試配置 end >>"%windir%\system32\drivers\etc\hosts" 
@attrib +r "%windir%\system32\drivers\etc\hosts"

把上面的程式碼儲存為ModifyHostForTest.bat。雙擊這個批處理檔案,會發現host已經修改了。