如何从命令行 (Windows) 将 PID 输出到文本文件中

发布于 2024-11-05 09:02:54 字数 104 浏览 0 评论 0原文

我使用过各种在 Windows 上输出正在运行的进程的工具,尽管它们似乎都不允许您仅导出 pid,例如每个正在运行的进程的每一行上有一个 PID。

有没有办法从命令行执行此操作?

I have used various tools that output running processes on Windows, although none of them seem to allow you to export just the pids e.g. one PID on each line for each running process.

Is there a way of doing this from command line?

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

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

发布评论

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

评论(2

追风人 2024-11-12 09:02:54

tasklist /FO CSV 为您提供一个 csv 列表,只需拉动第二列即可。

@echo off

for /f "tokens=2 delims=," %%i in ('tasklist /FO CSV') do (
  echo %%i
)

将此称为 .bat > mytextfile.txt

tasklist /FO CSV gives you a csv list, just yank the 2nd column.

@echo off

for /f "tokens=2 delims=," %%i in ('tasklist /FO CSV') do (
  echo %%i
)

Call this .bat > mytextfile.txt

咽泪装欢 2024-11-12 09:02:54

对于 xp、vista、windows 7,您可以在命令 promt 中使用任务列表

for xp, vista, windows 7 you can use tasklist at the command promt

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