plesk panelde zaman ayarlarını yaptım ve diğer alanlarıda aşağıdaki gibi yaptım.
Path to executable file * C:\Windows\system32\cscript.exe
Arguments D:/xserver/domainim.com/httpdocs/schedule.vbs
schedule.vbs dosyasının içeriğide şu şekilde
Call RunIt()
Sub RunIt()
'Let the script to finish on an error.
On Error Resume Next
Dim RequestObj
Dim URL
Set RequestObj = CreateObject("Microsoft.XMLHTTP")
'Request URL...
URL = "http://domainim.com/calisacakdosya.php"
'Open request and pass the URL
RequestObj.open "POST", URL , false
'Send Request
RequestObj.Send
'cleanup
Set RequestObj = Nothing
End Sub