windows 查看进程的启动时间

powershell

管理员身份运行powershell,执行以下命令: 

Get-Process | select ProcessName, Id,starttime |findstr "name"

例如,findstr "java"

cmd

运行cmd,执行以下命令: 

wmic process where Name="process name" get CreationDate, ProcessId

此基于WMICWindows Management Instrumentation Command-line)。

Name需要填全名(包括后缀),例如Name="java.exe" 

你可能感兴趣的:(windows,windows,进程,时间,cmd)