I’m looking for a way to create a file that runs a specific URL in the background at a specific time. I’ll run the service on a timer, and the user won’t be logged in. Basically, the server restarts every day, and I want to run a service at 6AM that just goes to a URL (which will automatically complete some tasks). I was thinking batch file or even AHK..but is there a simple way to do this?
Share
My comment:
You just want to open a URL that itself start some tasks? Tried iexplore.exe “your url” as a windows task?
Add:
If this don’t work you can just write a small script in vbscript which you fire as task sheduler task.
This script just opens your url:
Pro’s prolly post that you better do this as powershell .NET script instead, but I never get used to that now. If you want todo coding in .NET instead (vbscript is a bit tricky to setup security on windows 2008 servers) then better write a simple .exe file in .NET that you just start.