我可以使用 VB.net 检索 MS-DOS 窗口的标题吗?

发布于 2024-08-08 20:24:00 字数 524 浏览 3 评论 0原文

使用下面的代码,我可以检索远程计算机上DOS命令窗口的图像名称和进程ID,但我也可以检索DOS窗口标题吗?

    Dim current As Process = Process.GetCurrentProcess()
    Dim processes As Process() = Process.GetProcesses("REMOTE_COMPUTER")

    Dim ThisProcess As Process
    For Each ThisProcess In processes
        If ThisProcess.ProcessName.ToUpper.Contains("CMD") Then
            ListBox1.Items.Add("Process Name: " & ThisProcess.ProcessName & vbTab & "Process ID: " & ThisProcess.Id)
        End If
    Next

Using the below code, I can retrieve the image name and process ID of the DOS command window on a remote machine, but can I also retrieve the DOS window title?

    Dim current As Process = Process.GetCurrentProcess()
    Dim processes As Process() = Process.GetProcesses("REMOTE_COMPUTER")

    Dim ThisProcess As Process
    For Each ThisProcess In processes
        If ThisProcess.ProcessName.ToUpper.Contains("CMD") Then
            ListBox1.Items.Add("Process Name: " & ThisProcess.ProcessName & vbTab & "Process ID: " & ThisProcess.Id)
        End If
    Next

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲影 2024-08-15 20:24:00

试试这个:

ThisProcess.MainWindowTitle

我正在使用 user32.dll 中的 GetWindowText 并正在寻找 Process 属性来获取主窗口处理程序,所以我偶然发现了MainWindowTitle 属性

有时并不需要太难。

Try this:

ThisProcess.MainWindowTitle

I was playing with GetWindowText from user32.dll and was looking for a Process property to get main window handler, so i stumbled with that MainWindowTitle property

Sometimes, it doesn't need to be hard.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文