1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/windows/tasklist.md

24 lines
487 B
Markdown
Raw Normal View History

2019-03-11 22:52:01 +08:00
# tasklist
2019-10-18 11:30:29 +08:00
> 显示本地或远程计算机上当前正在运行的进程的列表.
2019-03-11 22:52:01 +08:00
2019-10-19 14:12:27 +08:00
- 显示当前正在运行的进程:
2019-03-11 22:52:01 +08:00
`tasklist`
2019-10-19 14:12:27 +08:00
- 使用指定的格式显示当前进程列表:
2019-03-11 22:52:01 +08:00
`tasklist /fo {{table|list|csv}}`
2019-10-19 14:12:27 +08:00
- 已匹配的方式 (.exe, .dll) 显示当前运行的进程:
2019-03-11 22:52:01 +08:00
`tasklist /m {{匹配模式}}`
2019-10-19 14:12:27 +08:00
- 显示在远程计算机上运行的进程:
2019-03-11 22:52:01 +08:00
`tasklist /s {{远程主机名}} /u {{用户名}} /p {{密码}}`
2019-10-19 14:12:27 +08:00
- 显示每个进程中的服务信息:
2019-03-11 22:52:01 +08:00
`tasklist /svc`