mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-15 07:48:44 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
33
tldr/windows/taskkill
Normal file
33
tldr/windows/taskkill
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# taskkill
|
||||
|
||||
> Terminate a process by its process ID or name.
|
||||
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/taskkill>.
|
||||
|
||||
- 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 /?`
|
||||
Reference in New Issue
Block a user