@echo off
echo 192.168.0.1 www.baidu.com >> C:\Windows\System32\drivers\etc\hosts
echo 192.168.0.2 www.google.hk >> C:\Windows\System32\drivers\etc\hosts
exit
添加受信任站点是适用于win7和win10的,win7下会报个错误,不影响,是因为要刷新IE的过
@echo off
setlocal
:: 添加https://niu.baidu.com到IE受信任站点
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\baidu.com\niu" /v https /t REG_DWORD /d 00000002 /f
:: 添加https://niu.google.hk到IE受信任站点
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\google.hk\niu" /v https /t REG_DWORD /d 00000002 /f
:: 刷新IE设置
%systemroot%\System32\cmd.exe /c "%systemroot%\System32\ie4uinit.exe" -ClearIconCache
%systemroot%\System32\rundll32.exe %systemroot%\System32\iesetup.dll, IEAccessSysInst
%systemroot%\System32\cmd.exe /c "%systemroot%\System32\ie4uinit.exe" -UserIconConfig
echo 受信任站点已添加完成!
pause