Created
August 13, 2021 05:27
-
-
Save mrzcn/92b92502f29dfdf1d00f94b8bab3a6a5 to your computer and use it in GitHub Desktop.
Taskkill komutu kullanım örnekleri.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Örnekler: | |
TASKKILL /IM notepad.exe | |
TASKKILL /PID 1230 /PID 1241 /PID 1253 /T | |
TASKKILL /F /IM cmd.exe /T | |
TASKKILL /F /FI “PID ge 1000” /FI “WINDOWTITLE ne adsız*” | |
TASKKILL /F /FI “USERNAME eq NT AUTHORITY\SYSTEM” /IM notepad.exe | |
TASKKILL /S sistem /U etkialanı\kullanıcıadı /FI “USERNAME ne NT*” /IM * | |
TASKKILL /S sistem /U kullanıcıadı /P parola /FI “IMAGENAME eq not*” | |
wmic process where "name='cmd.exe'" delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment