首頁(yè)
社區(qū)
課程
招聘
internet選項(xiàng)的設(shè)置怎么通過程序來實(shí)現(xiàn)?

 

就是這個(gè),我看好像BAT也沒辦法實(shí)現(xiàn),這有什么辦法嗎?

收藏
2條回答
為華 2022-11-27

EXE就可以

回復(fù)
Sonshines 2022-12-6

如果您想通過程序來設(shè)置 Internet Explorer 瀏覽器的選項(xiàng),您可以使用 Windows Script Host (WSH) 編寫腳本。WSH 是一種 Microsoft Windows 操作系統(tǒng)中的腳本技術(shù),它可以用來執(zhí)行各種腳本語言,包括 JScript 和 VBScript。

 

下面是一個(gè)簡(jiǎn)單的示例,展示了如何使用 VBScript 設(shè)置 Internet Explorer 瀏覽器的“安全”選項(xiàng):

1
2
3
4
5
6
7
8
9
10
Dim ie
Set ie = CreateObject("InternetExplorer.Application")
 
' Set the "Security" options
ie.Security.Zones(1).Level = 1
ie.Security.Zones(2).Level = 2
ie.Security.Zones(3).Level = 2
 
' Save the changes and exit
ie.Quit

上面的示例代碼用來設(shè)置 Internet Explorer 瀏覽器的“安全”選項(xiàng)。它通過在腳本中創(chuàng)建 Internet Explorer 應(yīng)用程序的實(shí)例,然后使用 VBScript 設(shè)置安全選項(xiàng),最后保存更改并退出。

 

例如,腳本中第一行設(shè)置了第一個(gè)安全區(qū)域的安全級(jí)別。

 

如果您想設(shè)置 Internet Explorer 瀏覽器的高級(jí)選項(xiàng),可以使用類似于上面的代碼來編寫腳本。只需要將相應(yīng)的屬性和方法替換成您想要設(shè)置的選項(xiàng)即可。

 

例如,如果您想設(shè)置“高級(jí)”選項(xiàng)卡中的“提醒”選項(xiàng),可以這樣寫:

1
2
3
4
5
6
7
8
Dim ie
Set ie = CreateObject("InternetExplorer.Application")
 
' Set the "Notifications" option
ie.Advanced.Notifications = False
 
' Save the changes and exit
ie.Quit

上面的代碼會(huì)禁用 Internet Explorer 瀏覽器的“提醒”選項(xiàng)

回復(fù)