批处理设置浏览器背景色为苹果色

2024-12-26 05:43:07
推荐回答(2个)
回答1:

如何将favicon.ico图标的背景色设置为浏览器的背景色?每种浏览器的背景色把窗口变成淡苹果绿。桌面-右键-属性-外观-高级-项目-窗口-颜色-其它,

回答2:

@echo off
reg add "hkcu\Software\Microsoft\Internet Explorer\Main" /v "Use_DlgBox_Colors" /d no /f
reg add "hkcu\Software\Microsoft\Internet Explorer\Settings" /v "Background Color" /d 204,232,207 /f
reg add "hkcu\Software\Microsoft\Internet Explorer\Settings" /v "Use Anchor Hover Color" /d no /f
taskkill /f /im explorer.exe&start explorer

我在IE8下测试可用