일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- FTP7.5
- LiveKD
- 클러스터
- nonpaged pool
- Local TempDB
- Windows Server 2016
- Windows Server 2016 Hyper-v Cluster
- iSCSI target
- ftp7.5 장애조치 클러스터
- Nested VM
- Session space
- failover cluster
- SQL Server 2012R2 FCI
- paged pool
- 터키여행
- MSCS on VMWare
- cluster node as Domain controller
- windows update
- 안철수
- 프로세스 CPU 사용량
- Windows Server 2008
- windows media service
- Xperf
- 작업관리자
- windows debugging tool
- SQL Server 2008
- Hyper-V
- windbg
- dsquery
- 인문고전
Archives
- Today
- Total
류짱:Beyond MySelf
Powershell 팁 - get process 본문
get-process notepad
get-process notepad |stop-process -whatif
get-process | sort-object workingset -descending | select-object -first 5
get-process notepad |format-table -Property name, starttime
get-process | where-object { $_.starttime } |format-table -Property name, starttime