ShellWindows
- это окна Internet Explorer и File Explorer.
Set objShell = CreateObject("Shell.Application")
Set AllWindows = objShell.Windows
For Each window in AllWindows
msgbox window.locationname & vbcrlf & typename(window.parent) & vbcrlf & window.name
Next
Или объект window
выше, являющийся объектом IE.
Set ie = CreateObject("InternetExplorer.Application")
ie.Navigate2 "www.google.com.au"
ie.visible=true
wscript.sleep 5000
ie.refresh2