3

私は主に次のようにwmicをlinux-psと同等のものとして使用します。

wmic process where (name="java.exe") get processId, commandline

しかし、出力列はアルファベット順に並べられているので、次のようになります。

CommandLine                            ProcessId
java -cp ... some.Prog arg1 arg2 ...   2345
java -cp ... other.Prog arg1 arg2 ...  3456

私が欲しいのは:

ProcessId  CommandLine
2345       java -cp .... some.Prog arg1 arg2 ...
3456       java -cp .... other.Prog arg1 arg2 ...

これは、コマンドラインが長い場合にはるかに読みやすくなります。

使用する構文を単純化するためにps.batを作成することを考えているので、wmic出力を後処理するためのバッチスクリプトソリューションは大歓迎です。

4

2 に答える 2

3

もう1つのオプションは、WMICを使用せずに、VBSを介してWMIのWin32_ProcessSQLテーブルに直接アクセスすることです。次に、どの列、列の順序、およびそれらの出力形式を正確に管理できます。

CSV出力のVBSコードは次のとおりです。 processList.vbs

' === Direct access to Win32_Process data ===
' -------------------------------------------
Set WshShell = WScript.CreateObject("WScript.Shell")
Set locator = CreateObject("WbemScripting.SWbemLocator")
Set service = locator.ConnectServer()
Set processes = service.ExecQuery ("select ProcessId,CommandLine,KernelModeTime,UserModeTime from Win32_Process")

For Each process in processes
   Return = process.GetOwner(strNameOfUser) 
   wscript.echo process.ProcessId & "," & process.KernelModeTime & "," & process.UserModeTime & "," & strNameOfUser & "," & process.CommandLine
Next

Set WSHShell = Nothing

コマンドラインの使用法: cscript //NoLogo processList.vbs

Win32_Process列リスト:http ://msdn.microsoft.com/en-gb/library/windows/desktop/aa394372(v = vs.85).aspx

ここにある元のJavaコード:http ://www.rgagnon.com/javadetails/java-0593.html

于 2013-03-08T23:57:07.327 に答える
2

単純なバッチファイルがその役割を果たします(あなたの場合のみ)。

を検索して2列目の開始位置を決定し、ProcessId各行を並べ替えます

@echo off
setlocal EnableDelayedExpansion
set "first=1"
for /F "usebackq delims=" %%a in (`"wmic process where (name="cmd.exe") get processId, commandline"`) DO (
    set "line=%%a"
    if defined first (
        call :ProcessHeader %%a
        set "first="
        setlocal DisableDelayedExpansion
    ) ELSE (
        call :ProcessLine
    )
)
exit /b

:ProcessHeader line
set "line=%*"
set "line=!line:ProcessID=#!"
call :strlen col0Length line
set /a col1Start=col0Length-1
exit /b

:ProcessLine
setlocal EnableDelayedExpansion
set "line=!line:~0,-1!"
if defined line (
    set "col0=!line:~0,%col1Start%!"
    set "col1=!line:~%col1Start%!"
    echo(!col1!!col0!
)
Endlocal
exit /b

:strlen <resultVar> <stringVar>
(   
    setlocal EnableDelayedExpansion
    set "s=!%~2!#"
    set "len=0"
    for %%P in (4096 2048 1024 512 256 128 64 32 16 8 4 2 1) do (
        if "!s:~%%P,1!" NEQ "" ( 
            set /a "len+=%%P"
            set "s=!s:~%%P!"
        )
    )
)
( 
    endlocal
    set "%~1=%len%"
    exit /b
)
于 2012-04-20T11:59:58.827 に答える