Home  >  Article  >  Computer Tutorials  >  One-click setting of IE browser homepage, one-click lock of browser homepage

One-click setting of IE browser homepage, one-click lock of browser homepage

WBOY
WBOYOriginal
2024-06-18 16:39:11747browse

When many Internet users browse the web on a daily basis, they often encounter the problem that the browser homepage has been tampered with, which not only affects normal use, but also brings security risks. PHP editor Xigua specially brings you a one-click setting and locking method for the IE browser homepage to help you easily solve this problem.

One-click setting of IE browser homepage, one-click lock of browser homepage

E browser's default homepage, and the setting items are locked to prevent users from changing back the solution. Click Run to set the homepage, eliminating the need to enter it manually every time Trouble. Create a new notepad and save it as BAT.

One-click to set the homepage batch process (can be released)

@echooff
::设置主页地址为"https://www.20hn.com",可自行更改.
setStartPage=https://www.20hn.com
::设置IE是否可更改主页地址.0-是,1-否
setdword=0
::设置地址
regadd"HKEY_CURRENT_USERSoftwareMicrosoftInternetExplorerMain"/v"StartPage"/tREG_SZ/d%StartPage%/f
::设置更改主页权限
regadd"HKEY_CURRENT_USERSoftwarePoliciesMicrosoftInternetExplorerControlPanel"/vHOMEPAGE/tREG_DWORD/d%dword%/f

One-click to set the homepage batch process (locked cannot be released)

@echooff
::设置主页地址为"https://www.20hn.com",可自行更改.
setStartPage=https://www.20hn.com
::设置IE是否可更改主页地址.0-是,1-否
setdword=0
::设置地址
regadd"HKEY_CURRENT_USERSoftwareMicrosoftInternetExplorerMain"/v"StartPage"/tREG_SZ/d%StartPage%/f
::设置更改主页权限
regadd"HKEY_CURRENT_USERSoftwarePoliciesMicrosoftInternetExplorerControlPanel"/vHOMEPAGE/tREG_DWORD/d%dword%/f

The above is the detailed content of One-click setting of IE browser homepage, one-click lock of browser homepage. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn