How to get details about a process in windows
Stroy
Memo how to get details about process
- open task manager
- select tab detail
- get pid that you want for example 15544
- enter win
- type power shell
- get how long a process runs type below
1 | New-TimeSpan(Get-Process -Id 15544).StartTime |
- get information
1 | Days : 0 |
- get process start time
1 | Get-Process -Id 15544 | select StartTime |
10.get info
1 | StartTime |
reference
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment