溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

如何利用vbs腳本實(shí)現(xiàn)設(shè)置IE的打印頁(yè)眉頁(yè)腳信息

發(fā)布時(shí)間:2021-07-06 11:05:04 來(lái)源:億速云 閱讀:240 作者:chen 欄目:開(kāi)發(fā)技術(shù)

本篇內(nèi)容主要講解“如何利用vbs腳本實(shí)現(xiàn)設(shè)置IE的打印頁(yè)眉頁(yè)腳信息”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“如何利用vbs腳本實(shí)現(xiàn)設(shè)置IE的打印頁(yè)眉頁(yè)腳信息”吧!

將下面的內(nèi)容保存成.vbs文件,然后雙擊執(zhí)行,在打開(kāi)ie頁(yè)面,在頁(yè)面中點(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 _ 
            +"//設(shè)置網(wǎng)頁(yè)打印的頁(yè)眉頁(yè)腳為默認(rèn)值"+vbcrlf  _ 
            +"set regwsh = createobject(""wscript.shell"")" +vbcrlf _ 
            +"hkey_key=""\pagesetup\header""" +vbcrlf _ 
            +"regwsh.regwrite hkey_root+hkey_path+hkey_key,""&w&b頁(yè)碼:&p/&p""" +vbcrlf _ 
            +"hkey_key=""\pagesetup\footer""" +vbcrlf _ 
            +"regwsh.regwrite hkey_root+hkey_path+hkey_key,""&u&b&d""" +vbcrlf _ 
            +"//設(shè)置右鍵菜單上的顯示文字" +vbcrlf _ 
            +"//首先刪除原來(lái)的項(xiàng),然后再設(shè)置新的項(xiàng)"+vbcrlf  _ 
            +"on error resume next" +vbcrlf _ 
            +"hkey_key=hkey_root+hkey_path+""\menuext\打印時(shí)恢復(fù)頁(yè)眉頁(yè)腳\""" +vbcrlf _ 
            +"regwsh.regdelete hkey_key" +vbcrlf _ 
            +"hkey_key=hkey_root+hkey_path+""\menuext\打印時(shí)去掉頁(yè)眉頁(yè)腳\""" +vbcrlf _ 
            +"regwsh.regwrite hkey_key,filepath" +vbcrlf _ 
            +"//關(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 _ 
            +"//設(shè)置網(wǎng)頁(yè)打印的頁(yè)眉頁(yè)腳為空" +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 _ 
            +"//設(shè)置右鍵菜單上的顯示文字" +vbcrlf _ 
            +"//首先刪除原來(lái)的項(xiàng),然后再設(shè)置新的項(xiàng)" +vbcrlf _ 
            +"on error resume next"+vbcrlf  _ 
            +"hkey_key=hkey_root+hkey_path+""\menuext\打印時(shí)去掉頁(yè)眉頁(yè)腳\""" +vbcrlf _ 
            +"regwsh.regdelete hkey_key"+vbcrlf  _ 
            +"hkey_key=hkey_root+hkey_path+""\menuext\打印時(shí)恢復(fù)頁(yè)眉頁(yè)腳\""" +vbcrlf _ 
            +"regwsh.regwrite hkey_key,filepath" +vbcrlf _ 
            +"//關(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í)去掉頁(yè)眉頁(yè)腳\" 
    regwsh.regwrite hkey_key,"c:\pagesetup_null.htm" 

到此,相信大家對(duì)“如何利用vbs腳本實(shí)現(xiàn)設(shè)置IE的打印頁(yè)眉頁(yè)腳信息”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vbs
AI