出處:https://blog.csdn.net/wwq921220/article/details/106661245/
tasklist
- 使用 tasklist :
tasklist /v
很多進程還是沒顯示命令行參數
wmic
wmic process get caption,commandline /value
- 某一個 具體的進程 命令行參數:
wmic process where caption="WXDrive.exe" get caption,commandline /value
;wmic process get caption,commandline /value | findstr "WXDrive.exe"