검색결과 리스트
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
# 최신 10개의 이벤트로그 가져오기
Get-EventLog -newest 10 -logname Application | Select-Object Index, Time, Source, Message | Export-Clixml D:\EventLog.xml
# 100MB 이상 프로세스 구하기
Get-Process | Where-Object { $_.Workingset -gt 100MB } | Select-Object Handles, CPU, ProcessName | ConvertTo-Html | Out-File D:\Process.html
'-- PowerShell' 카테고리의 다른 글
Using PowerShell to call a WCF Service (0) | 2012.09.06 |
---|---|
Encrypt all stored procedures with powershell (0) | 2012.09.03 |
powershell로 ping 테스트 (0) | 2011.08.17 |
PowerShell로 웹소스 가져오기 (0) | 2011.08.17 |
zip파일 다루기 (0) | 2011.08.16 |
RECENT COMMENT