dos taskkill 命令

C:\Users\asn\Desktop>taskkill /?

TASKKILL [/S system [/U username [/P [password]]]]
         { [/FI filter] [/PID processid | /IM imagename] } [/T] [/F]

Description:
    This tool is used to terminate tasks by process id (PID) or image name.

Parameter List:
    /S    system           Specifies the remote system to connect to.

    /U    [domain\]user    Specifies the user context under which the command should execute. 指定命令执行的用户上下文

    /P    [password]       Specifies the password for the given user context. Prompts for input if omitted. 为指定的用户上下午指定密码

    /FI   filter           Applies a filter to select a set of tasks.
                           Allows "*" to be used. ex. imagename eq acme*

    /PID  processid        Specifies the PID of the process to be terminated. 指定将被终止进程的PID, 使用tasklist获取PID
                           Use TaskList to get the PID.

    /IM   imagename        Specifies the image name of the process to be terminated. 指定将被终止的进程映像名
                           Wildcard ‘*‘ can be used to specify all tasks or image names.

    /T                     Terminates the specified process and any child processes which were started by it.
                           终止指定的进程和其所有子进程

    /F                     Specifies to forcefully terminate the process(es). 强制终止进程

    /?                     Displays this help message.

Filters:
    Filter Name   Valid Operators           Valid Value(s)
    -----------   ---------------           -------------------------
    STATUS        eq, ne                    RUNNING | NOT RESPONDING | UNKNOWN
    IMAGENAME     eq, ne                    Image name
    PID           eq, ne, gt, lt, ge, le    PID value
    SESSION       eq, ne, gt, lt, ge, le    Session number.
    CPUTIME       eq, ne, gt, lt, ge, le    CPU time in the format of hh:mm:ss.
                                            hh - hours, mm - minutes, ss - seconds
    MEMUSAGE      eq, ne, gt, lt, ge, le    Memory usage in KB
    USERNAME      eq, ne                    User name in [domain\]user
                                            format
    MODULES       eq, ne                    DLL name
    SERVICES      eq, ne                    Service name
    WINDOWTITLE   eq, ne                    Window title

    NOTE
    ----
    1) Wildcard ‘*‘ for /IM switch is accepted only when a filter is applied.
    2) Termination of remote processes will always be done forcefully (/F).
    3) "WINDOWTITLE" and "STATUS" filters are not considered when a remote
       machine is specified.

Examples:
    TASKKILL /IM notepad.exe  ## 终止进程映像名为 notepad.exe 的进程
    TASKKILL /PID 1230 /PID 1241 /PID 1253 /T
      TASKKILL /F /IM cmd.exe /T  ## 强制终止进程映像名为cmd.exe进程,并终止从其启动的所有子进程例如,终止所有的java.exe进程: taskkill /f /im java.exe /t

    TASKKILL /F /FI "PID ge 1000" /FI "WINDOWTITLE ne untitle*"  ## 终止进程PID > 1000 且 window title 不等于 untitle* 的所有进程

    TASKKILL /F /FI "USERNAME eq NT AUTHORITY\SYSTEM" /IM notepad.exe

    TASKKILL /S system /U domain\username /FI "USERNAME ne NT*" /IM *
    TASKKILL /S system /U username /P password /FI "IMAGENAME eq note*"

findstr命令

C:\Users\asn\Desktop>findstr /?
Searches for strings in files.

FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P]
        [/F:file] [/C:string] [/G:file] [/D:dir list] [/A:color attributes] [/OFF[LINE]]
        strings [[drive:][path]filename[ ...]]

  /B         Matches pattern if at the beginning of a line.
  /E         Matches pattern if at the end of a line. 

  /L         Uses search strings literally.

  /R         Uses search strings as regular expressions.

  /S         Searches for matching files in the current directory and all subdirectories.
             在当前目录和其子目录搜素匹配的文件

  /I         Specifies that the search is not to be case-sensitive. 默认搜素大小写敏感,指定大小写不敏感

  /X         Prints lines that match exactly. 打印出匹配的行
  /V         Prints only lines that do not contain a match.

  /N         Prints the line number before each line that matches. 在每个匹配行前,打印行号

  /M         Prints only the filename if a file contains a match. 如果文件包含匹配,仅打印文件名

  /O         Prints character offset before each matching line.  在每个匹配行前,打印字符偏移

  /P         Skip files with non-printable characters. 忽略带有不可打印字符的文件

  /OFF[LINE] Do not skip files with offline attribute set. 不要忽略设置了offline属性的文件

  /A:attr    Specifies color attribute with two hex digits. See "color /?"  使用2个十六进制数指定color属性

  /F:file    Reads file list from the specified file(/ stands for console). 从指定的文件中读取文件列表

  /C:string  Uses specified string as a literal search string.  使用指定的字符串作为一个字面搜索串

  /G:file    Gets search strings from the specified file(/ stands for console). 从指定的文件中获取搜索字符串

  /D:dir     Search a semicolon delimited list of directories 搜索一个逗号分隔的目录

  strings    Text to be searched for. 待搜索的文本

  [drive:][path]filename
             Specifies a file or files to search. 指定一个文件、一些文件用于搜索

Use spaces to separate multiple search strings unless the argument is prefixed with /C.
For example,
‘FINDSTR "hello there" x.y‘ searches for "hello" or "there" in file x.y.   ## FINDSTR "hello there" x.y      搜索hello或there
‘FINDSTR /C:"hello there" x.y‘ searches for "hello there" in file x.y.     ## FINDSTR /C:"hello there" x.y   把"hello there"当做一个整体在x.y文件中搜索

Regular expression quick reference:
  .        Wildcard: any character
  *        Repeat: zero or more occurrences of previous character or class
  ^        Line position: beginning of line
  $        Line position: end of line
  [class]  Character class: any one character in set
  [^class] Inverse class: any one character not in set
  [x-y]    Range: any characters within the specified range
  \x       Escape: literal use of metacharacter x
  \<xyz    Word position: beginning of word
  xyz\>    Word position: end of word

For full information on FINDSTR regular expressions refer to the online Command Reference.
时间: 2024-10-11 06:35:26

dos taskkill 命令的相关文章

cocos2d-x教程3:用php或DOS批处理命令来转换文件和解压缩zip

tinyurl.com/nrxcsea tinyurl.com/nanqhzt tinyurl.com/l2wh6kg tinyurl.com/o3ekj2w tinyurl.com/q3865ld tinyurl.com/ny2gcsw tinyurl.com/o8cabvz tinyurl.com/or7pq8t tinyurl.com/lokv5dw tinyurl.com/pecmpqm tinyurl.com/kafpj4l tinyurl.com/orlulbc tinyurl.co

Win 管理器 运行命令 大全(Windows下的DOS运行命令)

DOS 运行命令管理器字符大全 Win 管理器  运行命令 大全(Windows下的DOS运行命令) Nslookup-------IP 地址侦测器 explorer-------打开资源管理器 devmgmt.msc--- 设备管理器 progman--------程序管理器 taskmgr-----任务管理器(2000/ xp/ 2003 ) ntmsmgr.msc----移动存储管理器 eventvwr-------事件查看器 sysedit--------系统配置编辑器 regedt32

DOS外部命令

DOS的外部命令就是一些应用程序,能够使用户的操作更加方便和深入.这些外部命令都是以文件的形式存在,Windows系统的DOS外部命令保存在Windwos主目录下的"Command"目录中.下面就让我们来看看常用的一些DOS外部命令. 1)FORMAT(Format.COM)--格式化命令众所周知,新买的磁盘都必须经过格式化后方能使用,FORMAT命令可以完成对软盘和硬盘的格式化操作,格式为"FORMAT [盘符] [参数]",例如:"FORMAT A:

Dos批处理命令bat文件运行完以后自动关闭dos窗口的方法

Dos 批处理命令 bat Dos 批处理命令 bat 文件运行完以后自动关闭 dos 窗口的方法: ???? ? ? 很多人运行完批处理命令发现 dos 窗口不能自动关闭,那是因为你在 bat 文件中直接执行了需要运行的某些外部程序, 如果希望 dos 窗口自动关闭, 那么, 你可以使用 start 命令来执行该外部程序, 而不是直接写上一行来执行. 例子说 明: ???? ? ? start?"CS"?"c:\programme?files\cs\half-life.ex

了解一些dos常用命令

备注:[] --可选项   <>--必填项 DOS 特殊命令应用技巧: 向上箭头"↑"和向下箭头"↓"--回看上一次执行的命令 "Ctrl+C"组合--中断操作 在命令窗口鼠标右键"标记"--用来选中文本,再点击右键,成功复制 在命令窗口鼠标右键"粘贴"--把剪贴板内内容粘贴到提示符下 目录命令: 进入某盘符--盘符:     例如: d: 创建目录 --md    md [盘符:][路径名]&

DOS部分命令详解

**一,ping ** 它是用来检查网络是否通畅或者网络连接速度的命令.作为一个生活在网络上的管理员或者***来说,ping命令是第一个必须掌握的DOS命令,它所利用的原理是这样的:网络上的机器都有唯一确定的IP地址,我们给目标IP地址发送一个数据包,对方就要返回一个同样大小的数据包,根据返回的数据包我们可以确定目标主机的存在,可以初步判断目标主机的操作系统等.下面就来看看它的一些常用的操作.先看看帮助吧,在DOS窗口中键入:ping /? 回车,在此,我们只掌握一些基本的很有用的参数就可以了(

windows dos 常用命令行

dir (directory) :列出当前目录下的文件以及文件夹 md (make directory): 创建目录 rd (remove directory):删除目录 cd (change directory):进入指定目录 cd.. : 退回到上一级目录 cd\ : 退回到根目录 del:删除文件 exit:退出dos命令行 cls (clear screen): 清屏 有关某个命令的详细信息,请键入 HELP 命令名 ASSOC 显示或修改文件扩展名关联. ATTRIB 显示或更改文件属

windows下taskkill命令简介

1.简介 使用该工具可以按照进程 ID (PID) 或映像名称终止任务. 2.语法 TASKKILL [/S system [/U username [/P [password]]]]         { [/FI filter] [/PID processid | /IM imagename] } [/T] [/F] 2.1 参数列表:    /S    system           指定要连接的远程系统.    /U    [domain\]user    指定应该在哪个用户上下文执行这

TASKKILL命令使用方法

TASKKILL [/S system [/U username [/P [password]]]]          { [/FI filter] [/PID processid | /IM imagename] } [/T] [/F] 描述:     使用该工具按照进程 ID (PID) 或映像名称终止任务. 参数列表:     /S    system           指定要连接的远程系统. /U    [domain\]user    指定应该在哪个用户上下文执行这个命令. /P