?? antivirus.js
字號:
/*
antivirus.js
- determine whether the latest antivirus software is installed
- assumes existence of following regkey:
HKCU\Software\AntiVirusVendor\LatestUpdate
*/
var iVirusRet;
function CheckAntiVirusStatus()
{
var iInstVer = objShell.RegRead
("HKCU\\Software\\AntiVirusVendor\\LatestUpdate");
if (iCurrVer > iInstVer)
{
iVirusRet = objShell.Popup (getResource("resUpgrade"), // window msg
0, // no auto-hide
"Antivirus upgrade required", // window title
48 + 4); // window styles
// exclamation + yes/no
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -