실행 중인 프로세스에 대한 세부 정보를 보는 데 사용되는 대화형 쉘입니다. 더 많은 정보: https://learn.microsoft.com/windows-server/administration/windows-commands/wmic.
wmic {{별칭}} {{where_구문}} {{verb_구문}}
wmic process list brief
wmic process list full
wmic process get {{이름,프로세스_id,부모_프로세스_id}}
wmic process where {{이름="example.exe"}} list full
wmic process where processid={{프로세스_id}} get {{이름,명령어}}
wmic process {{프로세스_id}} delete