以下是 IE 列印設定腳本
<腳本語言=“VBScript”>
暗淡 hkey_root,hkey_path,hkey_key
hkey_root =“HKEY_CURRENT_USER”
hkey_path = "SoftwareMicrosoftInternet ExplorerPageSetup" //IE列印設定的北極位址
//設定修改函數
函數 pagesetup_null()
出錯時恢復下一步
設定 RegWsh = CreateObject("WScript.Shell")
hkey_key="標題"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"" //頁首
hkey_key="footer"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"" //頁腳
hkey_key="margin_left"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"1" //鍵值設定--左邊界
hkey_key="margin_top"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"1" //鍵值設定--上邊界邊界
hkey_key="margin_right"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"1" //鍵值設定--右側邊界
hkey_key="margin_bottom"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"1" //鍵值設定--下邊界邊界
結束函數
//恢復預設設定
函數 pagesetup_default()
出錯時繼續下一步
設定 RegWsh = CreateObject("WScript.Shell")
hkey_key="header"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"&w&b頁,&p/&P" //頁數-
hkey_key="footer"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"&u&b&d" //網址,日期等訊息
結束函數
</script>
除以上鍵值以外還有以下幾項,其值有待確認。
複式
方向
紙張大小
論文來源
印表機
注意:上面對頁邊距的設定為:1,實際設定值為25.4。