tasklist

Windows CMD · Processes · available in the simulator

What it does

Displays currently running processes.

Syntax

tasklist [/svc] [/v] [/fi filtro] [/fo formato] [/nh]

Options and parameters

  • /svc

    displays hosted services

  • /fi

    applies a filter

  • /v

    verbose mode

  • /SVC

    Displays services hosted in each process.

    tasklist /svc
  • /V

    Verbose mode: user name, CPU time, and window title.

  • /FI

    Applies a filter to the list.

    tasklist /fi "STATUS eq running"
  • /FO

    Output format: TABLE, LIST, or CSV.

    tasklist /fo csv
  • /NH

    Suppresses the column header row in TABLE and CSV formats.

  • /M

    Displays DLL modules loaded by each process.

  • /S

    Queries a remote system.

  • /U

    User context under which to execute the remote command.

  • /P

    Password for the user specified in /U.

Usage examples

  • tasklist
  • tasklist /svc
  • tasklist /fi "imagename eq notepad.exe"
  • tasklist /fi "STATUS eq running"
  • tasklist /fo csv
Practise tasklist

Related commands