进程与端口
Last updated
Last updated
$ netstat -ano | findstr "[PORT]"$ wmic process
$ wmic process list brief
$ wmic process list full
$ wmic process list system$ wmic /record:processes.xml process list full$ process$ tasklist
$ wmic process get name,executablepath,processid | findstr pid$ wmic process get caption,commandline /value$ wmic process where caption="svchost.exe" get caption,commandline /value