I have a script that starts Internet Explorer in NOTvisible mode, seen only in the TaskManager (Win98). Is there a clean way to close Iexplore after a pre-selected time, regardless of whether the first app is still running or not, and without making it visible?
Script is as follows:
Script is as follows:
Code:
Dim aWSHShell, bWSHShell
Set aWSHShell = CreateObject("WScript.Shell")
aWSHShell.Run "RemoteRecall.exe"
Set bWSHShell = CreateObject("WScript.Shell")
bWSHShell.Run "iexplore [URL unfurl="true"]http://www.tek-tips.com",[/URL] 0
WScript.Sleep 1800000
...