简体   繁体   中英

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);
    }
}
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 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM