Both good methods. Also.. the .run method has built in support for waiting for a process to complete.
Set WshShell = WScript.CreateObject("WScript.Shell")
strCommand = "notepad.exe"
WaitForProcess = True
WshShell.Run strCommand, 1, WaitForProcess
You could test for the flagfile, if it...
here you go, this will give you the url as well:
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = TRUE
ie.Navigate("http://www.adsentry.net/form.htm")
Do until ie.ReadyState = 4
WScript.Sleep 50
Loop
set urls = ie.document.all.tags("a")
For x = 0 to (urls.length)-1...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.