Created
February 22, 2012 18:14
-
-
Save pushmon/1886432 to your computer and use it in GitHub Desktop.
VBScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On Error Resume Next | |
Dim http, urlString | |
urlString = "http://pshmn.com/eaFnY" | |
Set http = CreateObject("Msxml2.ServerXMLHTTP") | |
http.Open "GET", urlString | |
http.Send | |
Set http = Nothing | |
If err.Number <> 0 Then | |
' log error | |
End If |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment