I am not a developer, just someone who wants to get things done more efficiently at work...
There's a service at https://www.example.com/service.aspx?id=XXX which I want to run on 100s of values of XXX, from my Windows XP desktop. I don't have a server or dev tools at my disposal. So far I've got as far as a .bat file with multiple lines of "start https://www.example.com/service.aspx?id=XXX", but this doesn't seem to be synchronous and just races through without waiting for the service to actually run. The only other complexity is that it's HTTPS. I've found that by logging in on IE manually then above method will work.
What's the most simple way to run a whole list of URLs synchronously through Windows?
