在桌面右下角出现温馨提示的vbs冒泡程序

2019-01-16 07:29:46于丽

ExtractFile "C:BalloonTip.exe" 
WScript.CreateObject("WScript.Shell").Run "cmd.exe /c C:BalloonTip.exe "" 请勿在电脑桌上放置贵重物品,以防被盗,请自行保管自己的各种虚拟帐号,如有丢失网吧概不负责!"" 温馨提示 10000 1", 0 

Function StrToByte(str) 
        Set xmldoc = CreateObject("Microsoft.XMLDOM") 
        xmldoc.loadXML "<?xml version=""1.0""?>" 
        Set pic = xmldoc.createElement("pic") 
        pic.dataType = "bin.hex" 
        pic.nodeTypedValue = str 
        StrToByte = pic.nodeTypedValue 
End Function