출처 : http://blog.naver.com/patrickson?Redirect=Log&logNo=90153182047


윈도우 스케줄러에 특정 URL을 호출하는 작업을 등록하고 싶다.

안타깝게도 윈도우 스케줄러 등록시에는 특정 url을 입력해주는 부분이 없다.

 

그럴때 메모장에 아래와 같이 작성을 한 다음 확장자를 vbs로 지정한다음 그 파일을

원하는 시간에 호출하도록 처리를 해주면 되겠다.

===========================================================================

Call LogEntry()

Sub LogEntry()

        'Force the script to finish on an error.

        On Error Resume Next

        'Declare variables

        Dim objRequest

        Dim URL

        Set objRequest = CreateObject("Microsoft.XMLHTTP")

        'Put together the URL link appending the Variables.

        URL = http://적용할 url

        'Open the HTTP request and pass the URL to the objRequest object

        objRequest.open "POST", URL , false

        'Send the HTML Request

        objRequest.Send

        'Set the object to nothing

        Set objRequest = Nothing

End Sub


===========================================================================


지금 작업은 해놨으나 작동은 되는지 확인해야함...


+ Recent posts