您好,登錄后才能下訂單哦!
今天小編給大家分享的是使用js修改注冊表的方法,很多人都不太了解,今天小編為了讓大家更加了解使用js修改注冊表的方法,所以給大家總結了以下內容,一起往下看吧。一定會有所收獲的哦。
本文主要通過WshShell 對象的相關方法實現。
WshShell對象是WSH(WSH是Windows ing Host的縮寫,內嵌于Windows操作系統中的腳本語言工作環境)的內建對象,主要負責程序的本地運行、處理注冊表、創建快捷方式、獲取系統文件夾信息及處理環境變量等工作。
WshShell 對象的相關方法如表11.1所示。
本實例中主要應用了 RegWrite方法,下面將對該方法進行詳細介紹。
RegWrite方法用于在注冊表中設置指定的鍵或值,其語法格式如下:
WshShell.RegWrite strName, anyValue, [strType]
參數說明:
l strName:用于指定注冊表的鍵或值,若strName以一個反斜杠 (在 中為//) 結束,則該方法設置鍵,否則設置值。strName 參數必須以根鍵名“HKEY_CURRENT_USER”、 “HKEY_LOCAL_MACHINE”、“HKEY_CLASSES_ROOT”、“HKEY_USERS”或 “HKEY_CURRENT_CONFIG”開頭。
l AnyValue:用于指定注冊表的鍵或值的值。當strType為REG_SZ或REG_EXPAND_SZ時,RegWrite方法自動將 anyValue轉換為字符串。若strType為REG_DWORD,則anyValue被轉換為整數。若strType為REG_BINARY,則 anyValue必須是一個整數。
l StrType:用于指定注冊表的鍵或值的數據類型。RegWrite方法支持的數據類型為REG_SZ、REG_EXPAND_SZ、 REG_DWORD和REG_BINARY。其他的數據類型被作為strType傳遞,RegWrite 返回 E_INVALIDARG。
實現過程:
(1)編寫自定義 函數PageSetup_del()和PageSetup_set(),用于實現清空頁眉頁腳和恢復頁眉頁腳的功能。具體代碼如下:
< language=" "> var HKEY_RootPath="HKEY_CURRENT_USER//Software//Microsoft//Internet Explorer//PageSetup//"; function PageSetup_del() { //清空頁眉頁腳 try { var WSc=new ActiveX ("W .Shell"); HKEY_Key="header"; WSc.RegWrite(HKEY_RootPath+HKEY_Key,""); HKEY_Key="footer"; WSc.RegWrite(HKEY_RootPath+HKEY_Key,""); }catch(e){} } function PageSetup_set() { //恢復頁眉頁腳 try{ var WSc=new ActiveX ("W .Shell"); HKEY_Key="header"; WSc.RegWrite(HKEY_RootPath+HKEY_Key,"&w&b頁碼,&p/&P"); HKEY_Key="footer"; WSc.RegWrite(HKEY_RootPath+HKEY_Key,"&u&b&d"); }catch(e){} } </ >
(2)建立HTML的 標簽,調用WebBrowser控件,代碼如下:
< id="WebBrowser" classid="ClSID:8856F961-340A-11D0-A96B-00C04Fd705A2" width="0" height="0"> </ >
(3)創建“清空頁眉頁腳”和“恢復頁眉頁腳”的超級鏈接,并調用自定義函數PageSetup_del()和PageSetup_set()實現相應功能。代碼如下:
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" ="PageSetup_del()">清空頁眉頁腳</a> <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" ="PageSetup_set()"> 恢復頁眉頁腳 </a>
(4)建立相關的打印超級鏈接,并調用WebBrowser控件的相應參數實現打印預覽、打印等功能。代碼如下:
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" ="document.all.WebBrowser.Execwb(7,1)">打印預覽</a> <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" ="document.all.WebBrowser.Execwb(6,1)">打印</a> <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" ="document.all.WebBrowser.Execwb(6,6)">直接打印</a> <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" ="document.all.WebBrowser.Execwb(8,1)">頁面設置</a>
關于使用js修改注冊表的方法就分享到這里了,當然并不止以上和大家分析的辦法,不過小編可以保證其準確性是絕對沒問題的。希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。