Quote:
Originally Posted by WiredGuy
You can batch script it. I can't recall off hand, but there's a dll file that will process url's from the command line to your default browser. Similiar to opening a webpage by double clicking in explorer, it will open your default browser with the url from the command line. I can't for the life of me remember the name of the dll, google it. Then put a sleep timer between requests and you're good.
WG
|
Ya I ended up doing some scripting.
here is the final code for anyone that is interested.
Code:
inputFile = "test.txt"
Set WshShell = WScript.CreateObject("WScript.Shell")
Set fso = WScript.CreateObject("Scripting.Filesystemobject")
Set urls = fso.OpenTextFile(inputFile)
Do Until urls.AtEndOfStream
url = urls.ReadLine
WshSHell.Run url
Loop
urls.Close()