開始windows xp
tlist
はtasklist
によって変更されました。 tlist
にはオプション\t
、親子プロセスの関係を照会することを許可したものは、tasklist
に同様のオプションが存在しますか?ありがとうございました
私はあなたがこれが欲しいと思います:
tasklist /SVC
これが役に立たない場合は、ProcessExplorerをお勧めします。これは、すべての親プロセスと子プロセスを表示するプログラムです。
これは公式リンクです: http://technet.Microsoft.com/en-us/sysinternals/bb896653.aspx
また、試すことができます
tasklist /M
それはあなたにそのような結果を与えるでしょう:
BESClientUI.exe 4296 ntdll.dll, wow64.dll, wow64win.dll,
wow64cpu.dll
SynTPHelper.exe 2216 N/A
sihost.exe 9340 ntdll.dll, KERNEL32.DLL, KERNELBASE.dll,
msvcrt.dll, combase.dll, ucrtbase.dll,
RPCRT4.dll, bcryptPrimitives.dll,
sechost.dll, advapi32.dll,
CoreMessaging.dll, ntmarta.dll,
また、それをフィルタリングすることができます
tasklist /M /FI "xxx"
Xxxとして、パラメータを指定できます。
Filters:
Filter Name Valid Operators Valid Value(s)
----------- --------------- --------------------------
STATUS eq, ne RUNNING | SUSPENDED
NOT RESPONDING | UNKNOWN
IMAGENAME eq, ne Image name
PID eq, ne, gt, lt, ge, le PID value
SESSION eq, ne, gt, lt, ge, le Session number
SESSIONNAME eq, ne Session name
CPUTIME eq, ne, gt, lt, ge, le CPU time in the format
of hh:mm:ss.
hh - hours,
mm - minutes, ss - seconds
MEMUSAGE eq, ne, gt, lt, ge, le Memory usage in KB
USERNAME eq, ne User name in [domain\]user
format
SERVICES eq, ne Service name
WINDOWTITLE eq, ne Window title
MODULES eq, ne DLL name
例えば:
tasklist /M /FI "IMAGENAME eq Explorer.exe"
これはあなたに似たようなものを与えます:
Image Name PID Modules
========================= ======== ============================================
Explorer.exe 9912 ntdll.dll, KERNEL32.DLL, KERNELBASE.dll,
msvcrt.dll, combase.dll, ucrtbase.dll,
RPCRT4.dll, bcryptPrimitives.dll,
OLEAUT32.dll, msvcp_win.dll, shcore.dll,
advapi32.dll, sechost.dll, powrprof.dll,
user32.dll, win32u.dll, GDI32.dll,
gdi32full.dll, shlwapi.dll,
windows.storage.dll, kernel.appcore.dll,
profapi.dll, FLTLIB.DLL, Shell32.dll,
cfgmgr32.dll, TWINAPI.dll, PROPSYS.dll,
winmm.dll, settingsynccore.dll,
UxTheme.dll, dwmapi.dll, SspiCli.dll,
USERENV.dll, twinapi.appcore.dll,
WININET.dll, WTSAPI32.dll,
TextInputFramework.dll, WINMMBASE.dll,
bcrypt.dll, cryptsp.dll, RMCLIENT.dll,
CoreUIComponents.dll, CoreMessaging.dll,
wintypes.dll, ntmarta.dll, IMM32.DLL,