일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- dsquery
- SQL Server 2008
- Session space
- SQL Server 2012R2 FCI
- MSCS on VMWare
- windows debugging tool
- paged pool
- 안철수
- 터키여행
- Windows Server 2016 Hyper-v Cluster
- iSCSI target
- windbg
- cluster node as Domain controller
- ftp7.5 장애조치 클러스터
- 프로세스 CPU 사용량
- Hyper-V
- windows update
- 클러스터
- Windows Server 2016
- Xperf
- LiveKD
- 인문고전
- Windows Server 2008
- FTP7.5
- Nested VM
- nonpaged pool
- Local TempDB
- failover cluster
- windows media service
- 작업관리자
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