將下面的內(nèi)容保存成.vbs文件,然后雙擊執(zhí)行,在打開ie頁面,在頁面中點(diǎn)擊右鍵,看看菜單中多了個(gè)什么!?。海?nbsp;
復(fù)制代碼 代碼如下:
option explicit
dim hkey_root,hkey_path,hkey_key,filepath
dim fs,fso,regwsh
hkey_root="hkey_current_user"
hkey_path="\software\microsoft\internet explorer"
//先創(chuàng)建文件
set fs=wscript.createobject("scripting.filesystemobject")
filepath="c:\pagesetup_default.htm"
set fso=fs.createtextfile(filepath,true)
fso.write("script language=""vbscript"">"+vbcrlf _
+"dim hkey_root,hkey_path,hkey_key,filepath,regwsh" +vbcrlf _
+"hkey_root=""hkey_current_user""" +vbcrlf _
+"hkey_path=""\software\microsoft\internet explorer""" +vbcrlf _
+"filepath=""c:\pagesetup_null.htm""" +vbcrlf _
+"http://設(shè)置網(wǎng)頁打印的頁眉頁腳為默認(rèn)值"+vbcrlf _
+"set regwsh = createobject(""wscript.shell"")" +vbcrlf _
+"hkey_key=""\pagesetup\header""" +vbcrlf _
+"regwsh.regwrite hkey_root+hkey_path+hkey_key,""wb頁碼:p/p""" +vbcrlf _
+"hkey_key=""\pagesetup\footer""" +vbcrlf _
+"regwsh.regwrite hkey_root+hkey_path+hkey_key,""ubd""" +vbcrlf _
+"http://設(shè)置右鍵菜單上的顯示文字" +vbcrlf _
+"http://首先刪除原來的項(xiàng),然后再設(shè)置新的項(xiàng)"+vbcrlf _
+"on error resume next" +vbcrlf _
+"hkey_key=hkey_root+hkey_path+""\menuext\打印時(shí)恢復(fù)頁眉頁腳\""" +vbcrlf _
+"regwsh.regdelete hkey_key" +vbcrlf _
+"hkey_key=hkey_root+hkey_path+""\menuext\打印時(shí)去掉頁眉頁腳\""" +vbcrlf _
+"regwsh.regwrite hkey_key,filepath" +vbcrlf _
+"http://關(guān)閉regwsh" +vbcrlf _
+"set regwsh=nothing"+vbcrlf _
+"/script>")
fso.close
filepath="c:\pagesetup_null.htm"
set fso=fs.createtextfile(filepath,true)
fso.write("script language=""vbscript"">" +vbcrlf _
+"dim hkey_root,hkey_path,hkey_key,filepath,regwsh" +vbcrlf _
+"hkey_root=""hkey_current_user""" +vbcrlf _
+"hkey_path=""\software\microsoft\internet explorer""" +vbcrlf _
+"filepath=""c:\pagesetup_default.htm""" +vbcrlf _
+"http://設(shè)置網(wǎng)頁打印的頁眉頁腳為空" +vbcrlf _
+"set regwsh =createobject(""wscript.shell"")" +vbcrlf _
+"hkey_key=""\pagesetup\header""" +vbcrlf _
+"regwsh.regwrite hkey_root+hkey_path+hkey_key,""""" +vbcrlf _
+"hkey_key=""\pagesetup\footer""" +vbcrlf _
+"regwsh.regwrite hkey_root+hkey_path+hkey_key,""""" +vbcrlf _
+"http://設(shè)置右鍵菜單上的顯示文字" +vbcrlf _
+"http://首先刪除原來的項(xiàng),然后再設(shè)置新的項(xiàng)" +vbcrlf _
+"on error resume next"+vbcrlf _
+"hkey_key=hkey_root+hkey_path+""\menuext\打印時(shí)去掉頁眉頁腳\""" +vbcrlf _
+"regwsh.regdelete hkey_key"+vbcrlf _
+"hkey_key=hkey_root+hkey_path+""\menuext\打印時(shí)恢復(fù)頁眉頁腳\""" +vbcrlf _
+"regwsh.regwrite hkey_key,filepath" +vbcrlf _
+"http://關(guān)閉regwsh" +vbcrlf _
+"set regwsh=nothing"+vbcrlf _
+"/script>")
fso.close
set regwsh=wscript.createobject("wscript.shell")
hkey_key=hkey_root+hkey_path+"\menuext\打印時(shí)去掉頁眉頁腳\"
regwsh.regwrite hkey_key,"c:\pagesetup_null.htm"
以上信息與文章正文是不可分割的一部分,如果您要轉(zhuǎn)載本文章,請保留以上信息,謝謝!
您可能感興趣的文章:- 添加網(wǎng)站到安全站點(diǎn).設(shè)置安全站點(diǎn)打開ActiveX時(shí)提示.去頁眉頁腳的vbs代碼
- IE瀏覽器打印的頁眉頁腳設(shè)置解決方法
- js實(shí)現(xiàn)頁面打印功能實(shí)例代碼(附去頁眉頁腳功能代碼)
- JS調(diào)用打印方法設(shè)置頁眉頁腳的實(shí)例
- javascript仿php的print_r函數(shù)輸出json數(shù)據(jù)
- javascript實(shí)現(xiàn)window.print()去除頁眉頁腳