WMI(Windows Management Instrumentation) 사용법
WMIC : WMI command-line utility
//-------------------------------------
* 목표 질의
- 프로세스 시작 명령행에 포함된 문자열로 프로세스 검색
- 예) 명령행에 some.bat 이 포함된 프로세스 찾기
"SELECT CommandLine FROM Win32_Process WHERE CommandLine like '%some.bat%'"
- PowerShell
Get-WmiObject -Query "SELECT CommandLine FROM Win32_Process WHERE CommandLine like '%some.bat%'"
- cmd.exe
wmic process where "name='cmd.exe' and CommandLine like '%some.bat%'" get CommandLine
//-------------------------------------
https://learn.microsoft.com/en-us/windows/win32/wmisdk/wmic
https://superuser.com/questions/1003921/how-to-show-full-command-line-of-all-processes-in-windows
//-------------------------------------
wmic process where "name='cmd.exe'" get Caption,ProcessId,CommandLine
'IT' 카테고리의 다른 글
WI-FI 버전 비교 (0) | 2024.06.01 |
---|---|
MaxOS 복구 방법 (support.apple.com/mac/restore) (0) | 2024.05.12 |
wsl 가상 드라이브(vhdx) 크기 정리(줄이기) (0) | 2023.09.20 |
사진 색상이 '포토샵' 과 '이미지 뷰어' 에서 다르게 보이는 현상 해결 방법 (0) | 2023.08.14 |
[WSL] msrdc.exe , WSLDVCPlugin.dll 관련 에러 해결 방법 (0) | 2023.08.14 |