mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-23 06:51:34 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
29
tldr/windows/tasklist
Normal file
29
tldr/windows/tasklist
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# tasklist
|
||||
|
||||
> Display a list of currently running processes on a local or remote machine.
|
||||
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/tasklist>.
|
||||
|
||||
- Display currently running processes:
|
||||
|
||||
`tasklist`
|
||||
|
||||
- Display running processes in a specified output format:
|
||||
|
||||
`tasklist /fo {{table|list|csv}}`
|
||||
|
||||
- Display running processes using the specified `.exe` or `.dll` file name:
|
||||
|
||||
`tasklist /m {{module_pattern}}`
|
||||
|
||||
- Display processes running on a remote machine:
|
||||
|
||||
`tasklist /s {{remote_name}} /u {{username}} /p {{password}}`
|
||||
|
||||
- Display services using each process:
|
||||
|
||||
`tasklist /svc`
|
||||
Reference in New Issue
Block a user