Is there a way to output a list of running window titles to the command window?
I know that it's possible to filter based on window title using tasklist /FI
. But is it possible to display a column of all window titles?
TaskList
will provide the image name, but I'm looking for the name as it appears in the task manager under the applications tab.
Do you mean something like this?
for /f "tokens=3,*" %a in ('tasklist /fo list /v ^| find "Window Title"') do @if not "%a"=="N/A" echo %a %b
Create a batch called Windows-Open.cmd
and put the follwing command inside:
TASKLIST /v /fo list |find /i "window title" |find /v "N/A"
There are a few refinements we can yet do... but for me its enough,,, simple,,, lean &% mean...
Stay good...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With