You can easily accomplish this with PowerShell and System.Net.WebClient .
Create a simple MyScriptName.ps1 file with the following contents:
$web = New-Object System.Net.WebClient $str = $web.DownloadString("http://www.example.com/jobs/job1") $str
Then create a new scheduled task and add a new action to Start a program and use the following settings:
Program/script: powershell Add arguments: .\MyScriptName.ps1 Start in: C:\The\Directory\You\Saved\Your\Script\In
source share