Windows 下有类似 /proc 的东西吗

发布于 2024-11-03 10:40:14 字数 1539 浏览 0 评论 0原文

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

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

发布评论

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

评论(3

孤凫 2024-11-10 10:40:14
  1. 任务管理器
  2. Cygwin,给Windows一个Linux环境,当然也允许Windows程序使用/proc.
  1. Task manager
  2. Cygwin, giving Windows a Linux environment, certainly allows a Windows program to use /proc.
能否归途做我良人 2024-11-10 10:40:14

据我所知,Windows 中没有与 /proc 等效的东西。虽然在 WMI、windbg 或 Win32 API 中存在通过 Win32_Process 获取类似信息的工具(与 /proc 相比受到限制,例如,您将无法通过这种方式获取进程内存映射),但 Windows 不会将此数据记录到文件中。

As far as I know, there isn't anything equivalent to /proc in Windows. While there are facilities for getting similar information via Win32_Process (limited in comparison to /proc, e.g. you won't be able to get process memory maps this way) in WMI, windbg or Win32 APIs, Windows does not record this data onto files.

寄人书 2024-11-10 10:40:14

如果您解释一下您的最终目标是什么,将会有所帮助。你想做什么?
要管理 Windows 上的进程,您有以下选项:

  1. Windows 附带任务管理器 (taskmgr.exe)
  2. 更好、更通用的替代方案是名为 Process Explorer
  3. 您还有名为 tasklist.exe 的命令行实用程序,它可以执行许多任务。
  4. 还有其他与进程交互的方式,包括winapi、WMI等。

It would help if you explained what your final goal is. What are you trying to do?
For managing processes on windows you have the following options:

  1. Windows ships with Task Manager (taskmgr.exe)
  2. A better more versatile alternative is a tool called Process Explorer
  3. You also have the command line utility called tasklist.exe which can perform many tasks.
  4. Also there are other ways to interact with processes, including winapi, WMI and so on.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文