2021-03-17 19:34:06 spawnshow

IE 備份 批次檔

IE 備份 批次檔
==============================================

IE all config export

reg export "HKCU\software\microsoft\Windows\CurrentVersion\Internet Settings" D:\MIS\IE_cfg_1.reg
reg export "HKLM\software\microsoft\Windows\CurrentVersion\Internet Settings" D:\MIS\IE_cfg_2.reg
reg export "HKCU\software\microsoft\Internet Explorer" D:\MIS\IE_cfg_3.reg
reg export "HKLM\software\microsoft\Internet Explorer" D:\MIS\IE_cfg_4.reg

==============================================
IE11_Exp_reg_信任相容性快顯.bat

@echo off
echo 【匯出 IE 信任網站  設定】,請稍等......
"C:\Windows\System32\Reg.exe" export "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains" "%~dp0\%username%_IE_trust_cfg.reg"
echo 【匯出 IE 相容性  設定】,請稍等......
"C:\Windows\System32\Reg.exe" export "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\BrowserEmulation\ClearableListData" "%~dp0\%username%_IE_compatibility_cfg.reg"
echo 【匯出 IE 快顯  設定】,請稍等......
"C:\Windows\System32\Reg.exe" export "HKEY_CURRENT_USER\software\microsoft\Internet Explorer\New Windows\Allow" "%~dp0\%username%_IE_pop-up_allow_cfg.reg"

echo 匯出完成!

==============================================
IE11_Imp_reg_信任相容性快顯.bat

@echo off
echo 【匯入 IE 信任網站  設定】,請稍等......
"C:\Windows\System32\Reg.exe" import "%~dp0\%username%_IE_trust_cfg.reg"
echo 【匯入 IE 相容性  設定】,請稍等......
"C:\Windows\System32\Reg.exe" import "%~dp0\%username%_IE_compatibility_cfg.reg"
echo 【匯入 IE 快顯  設定】,請稍等......
"C:\Windows\System32\Reg.exe" import "%~dp0\%username%_IE_pop-up_allow_cfg.reg"
echo 匯入完成!

pause

==============================================