Link to home
Start Free TrialLog in
Avatar of Danean
Danean

asked on

count lines of text in the opened internet window

I need a batch command file to attach to an icon I have on my internet explorer toolbar.

The command needs to count the number of text lines that are in the current internet explorer window.

So it is a text file, but each text file will have a different name and be already opened when I run the batch command to simply count the lines of text in the opened window.
Avatar of Qlemo
Qlemo
Flag of Germany image

A .bat/.cmd file does not have access to your Internet Explorer windows. That requires .Net code. Feasible with VBS or PowerShell, or .NET programming languages.
Avatar of Danean
Danean

ASKER

Okay.  Thanks for this information.  I do have powershell.  Do you know what the .Net code would be in order for me to get the line count?
Seems as if that is overly complicated still. I can't get PowerShell to tell which one is the "current openend Internet Explorer window". The best I can do is to show the line count of all URLs staring with FILE://:
(New-Object -COM Shell.Application).Windows() |
  where { $_.FullName -like '*\iexplore.exe' -and $_.LocationURL -like 'file:*'} |
  % { write-output ($_.LocationURL + ": " + ($_.Document.body.innerText -split "`r`n").count) }

Open in new window

Avatar of Danean

ASKER

the above solution works wonderfully.  However, I am kind of new and am having a few issues still.

1st.  I copied the script above into notepad and saved the files as c:\counttext.ps1.  I programmed by button to launch this file and of course it just opens the text file.  I made sure "all files" was selected before saving it.

2nd.  The solution executes fine from the powershell.

So what am I missing to get my button to run the script and not open the text file?

Thanks.
First try if you can start this command:
    powershell -file C:\counttext.ps1
If that works, use that line for executing the PS code.
Avatar of Danean

ASKER

I can start the powershell -file c:\counttext.ps1.

I tried adding that line to the beginning of the code you gave and it still does not run.  I also created a counttext file with just that line and I still can't run it.
ASKER CERTIFIED SOLUTION
Avatar of Qlemo
Qlemo
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial