如何从命令行 (Windows) 将 PID 输出到文本文件中
我使用过各种在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
tasklist /FO CSV
为您提供一个 csv 列表,只需拉动第二列即可。将此称为 .bat > mytextfile.txt
tasklist /FO CSV
gives you a csv list, just yank the 2nd column.Call this .bat > mytextfile.txt
对于 xp、vista、windows 7,您可以在命令 promt 中使用任务列表
for xp, vista, windows 7 you can use tasklist at the command promt