class="area">
通過vbs修改IE首頁常見的手法(圖文教程):
VBS修改IE首頁的代碼
代碼:
- set lhwy=createobject("wscript.shell")
-
- path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\main\Start Page"
- tf=lhwy.regwrite(path,"http://./")
- set path=nothing
- path="HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\Internet Explorer\Main\Start Page"
- tf=lhwy.regwrite(path,"http://./")
- wscript.quit