0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

powershell > プロセス(例としてbds.exe)の起動時刻を知る > Get-Process bds | Select-Object StartTime

Last updated at Posted at 2016-09-21
動作確認
Windows 7 pro

プロセスの起動時刻を知りたい。

間違い

bds.exeというプロセス起動時刻を見たい場合は、Powershellにて以下を実行する。

PS >
PS C:\Users\xxx> Get-Process bds | Format-List * | grep StartTime
STDIN
StartTime                  : 2016/09/21 17:17:24 

参考 PowerShell/プロセスの詳細な情報を取得する方法・Get-Process, Format-List

改良版

上記のgrepはC++ Builderインストール時に入ったものでした。
通常のWindowsではないものです。

@yumura_sさんのコメントの方法が良さそうです。

0
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?