如果名爲「jp2launcher」的進程是插件,我想檢查Powershell。我有以下命令的命令行:檢查進程是否爲插件
wmic process where (name="jp2launcher.exe") get CommandLine
這個命令的結果是:
"C:\Program Files (x86)\Java\jre1.8.0_31\bin\jp2launcher.exe" -secure -plugin ...
所以,如果有-plugin
的過程是一個插件。有沒有辦法只選擇插件的進程?
也許我誤解你的問題,但你不能只篩選命令? Get-WmiObject Win32_Process |其中{$ _。CommandLine -ne $ null - 和$ _。CommandLine.Contains(「 - plugin」)} | select commandline –
這對我很好,但我必須在名稱「jp2launcher」上設置選擇? –