home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2006 September
/
PCWorld_2006-09_cd.bin
/
zabezpeceni
/
privatefolder
/
MSPF10ENU.msi
/
Binary.GenuineVBScript
< prev
next >
Wrap
Text File
|
2006-08-08
|
610b
|
19 lines
Function IsConnect
On error resume next
Dim xmlhttp : Set xmlhttp = CreateObject("Msxml2.XMLHTTP.4.0")
xmlhttp.open "POST", "http://go.microsoft.com/fwlink", false
xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
xmlhttp.send
IF Err.Number = 0 then
Session.Property("IsConnect") = "1"
ELSE
Session.Property("IsConnect") = "0"
END IF
End Function
Function ConnectUrl
Dim shell : Set shell = CreateObject("Shell.Application")
shell.ShellExecute Session.Property("Genuine web") & "&LegitCheckError=" & Session.Property("LegitCheckResult")
End Function