Raja Anbazhagan
Raja Anbazhagan

Reputation: 4554

access the title of a window using vbscript

I'm trying to get the title of a window using VbScript. Is there any way to achieve it? like the way we do it in C#

using System.Diagnostics;

Process[] processlist = Process.GetProcesses();

foreach (Process process in processlist)
{
    if (!String.IsNullOrEmpty(process.MainWindowTitle))
    {
        Console.WriteLine("Process: {0} ID: {1} Window title: {2}",
                           process.ProcessName, process.Id, process.MainWindowTitle);
    }
}

Upvotes: 1

Views: 7991

Answers (1)

MC ND
MC ND

Reputation: 70923

Dim Tasks
    Tasks = Split(WScript.CreateObject("WScript.Shell").Exec("tasklist /v /fo csv").StdOut.ReadAll(),vbCrLf)

Dim task
    For Each task In Tasks
        task = Split(Trim(task),",")
        If Ubound(task) >= 8 Then
            WScript.Echo "Process " + task(0) + "ID: " + task(1) + " Title: " + task(8)
        End If
    Next 

Upvotes: 9

Related Questions