So apparently it has an invisible browser window open -- other 3rd party software might
do
the same.
Indeed they might.
So my question is: Would you have found the offending process quicker if that URL was
displayed in
the message box? Would you have made the connection to your Steam icon?
I would say the real benefit would be to those who don't know how to debug scripts
and would be confused by such a message. But yes, I would most likely have found
it quicker knowing the URL.
--
Good Luck,
Keith
Microsoft MVP [Windows XP Shell/User]
Hi Keith,
The script contained a typo, but I fixed it by removing the "& from line 6.
Note that Steam isn't half-life 2 per se -- it's merely a notification icon.
It downloads the latest news, keeps the software up to date and alerts
me when my friends are playing online so I can blow their brains out.
Anyhow, both the Location and the URL are exactly the same:
http://storefront/steampowered.com/...0,220,240,340,320,92,250&vac=0&ver=1&client=1
No doubt the parameters will change from system to system, but the
.php page should remain the same.
Hope this helps,
Glad it worked for you. Not familiar with Half-Life 2. That message is controlled
by
the
count for
the ShellWindows object:
http://msdn.microsoft.com/library/d...ference/objects/shellwindows/shellwindows.asp
whose items are considered InternetExplorer objects.
Hence the recommendation to run it on a quiet system
Can you run the following baby script while Half-Life2 is running and see if any
useful
info is in
the message box. If so, I could add a list to the message box in FVM.
---------------------
Set oXpShell = CreateObject("Shell.Application")
sMsg = oXpShell.windows.count & " windows detected:" & vbCrLf
For each oWindow in oXpShell.windows
With oWindow
sMsg = sMsg & " Location: " & .LocationName & " URL: " & .LocationUrl & "& vbCrLf
End With
Next
msgbox smsg
-----------------------------------
--
Good Luck,
Keith
Microsoft MVP [Windows XP Shell/User]
Here's the link:
http://mysite.verizon.net/res18hr7/FVM3.zip
the zip folder contains:
readme.txt
FolderViewMasterIII.vbs
You might wish to add to your readme that the script will say there
are 1 or more Windows Explorer or Internet Explorer windows open
even when there are no instances of IE or Explorer actually running
(besides the shell itself). After a little debugging I finally traced the
problem to the Steam notification icon that is added by Half-Life 2.
Closing the icon and retrying resolves the problem.
Aside from that it worked like a charm. Well done!