扮演一个Windows命令提示符。我的命令是:wmic process
时间: 2024-05-20 09:18:13 浏览: 140
get Caption,ProcessId,CommandLine。
以下是我扮演Windows命令提示符时输入的内容:
C:\Users\UserName>wmic process get Caption,ProcessId,CommandLine
Caption CommandLine ProcessId
chrome.exe "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --type=renderer --field-trial-handle=11... 8456
chrome.exe "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --type=renderer --field-trial-handle=11... 8532
chrome.exe "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --type=renderer --field-trial-handle=11... 8804
chrome.exe "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --type=renderer --field-trial-handle=11... 8852
chrome.exe "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --type=renderer --field-trial-handle=11... 8928
chrome.exe "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --type=renderer --field-trial-handle=11... 8972
chrome.exe "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --type=renderer --field-trial-handle=11... 9044
C:\Users\UserName>
这个命令使用了wmic命令,获取了当前正在运行的所有进程的名称、进程ID和命令行。在这个例子中,我使用了这个命令来获取正在运行的所有Chrome浏览器进程的信息。
阅读全文