mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 11:55:24 +02:00
taskkill: add page (#1904)
This commit is contained in:
parent
e33f88a334
commit
973c692236
1 changed files with 27 additions and 0 deletions
27
pages/windows/taskkill.md
Normal file
27
pages/windows/taskkill.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
# taskkill
|
||||
|
||||
> Terminate a process by its process id or name.
|
||||
|
||||
- Terminate a process by its id:
|
||||
|
||||
`taskkill /pid {{process_id}}`
|
||||
|
||||
- Terminate a process by its name:
|
||||
|
||||
`taskkill /im {{process_name}}`
|
||||
|
||||
- Forcefully terminate a specified process:
|
||||
|
||||
`taskkill /pid {{process_id}} /f`
|
||||
|
||||
- Terminate a process and its child processes:
|
||||
|
||||
`taskkill /im {{process_name}} /t`
|
||||
|
||||
- Terminate a process on a remote machine:
|
||||
|
||||
`taskkill /pid {{process_id}} /s {{remote_name}}`
|
||||
|
||||
- Display information about the usage of the command:
|
||||
|
||||
`taskkill /?`
|
Loading…
Add table
Reference in a new issue