View Single Post
Old 01-31-2012, 01:58 PM  
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,359
Quote:
Originally Posted by WiredGuy View Post
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()
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote