最近发现github打开时不时就会出问题,在网上看了下,需要修改host文件。这个时候发现host文件的文件路径实在不好找,所以这个时候就在想能不能写一个脚本能够自动打开host文件,然后编辑后关闭。
注意:由于这里修改host文件需要管理员权限,所以需要以管理员身份执行bat文件。
```
@echo off
color 04
notepad "%systemroot%/system32/drivers/etc/hosts"
set /p path = "please execute 'ipconfig /flushdns' to flush after hosts file changed"
pause
```
![测试结果](https://upload-images.jianshu.io/upload_images/2789632-e537333fa45b30d3.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)