wmic allows you to get a lot of information about processes running on a Windows computer. Here are some useful examples
To get a list of all running processes:
To get a list of all running processes:
C:\> wmic process list briefTo get information about a process with a specific PID:
C:\> wmic process where processid=1120Or to just get the command line:
C:\> wmic process where processid=1120 get commandline
Comments
Post a Comment