일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- iSCSI target
- Windows Server 2008
- SQL Server 2012R2 FCI
- 클러스터
- cluster node as Domain controller
- paged pool
- SQL Server 2008
- failover cluster
- windows debugging tool
- 작업관리자
- Windows Server 2016 Hyper-v Cluster
- nonpaged pool
- MSCS on VMWare
- 터키여행
- Session space
- 프로세스 CPU 사용량
- 안철수
- 인문고전
- windbg
- Local TempDB
- LiveKD
- dsquery
- windows media service
- Xperf
- FTP7.5
- Nested VM
- windows update
- ftp7.5 장애조치 클러스터
- Hyper-V
- Windows Server 2016
Archives
- Today
- Total
류짱:Beyond MySelf
프로세스의 사용 가능한 최대 메모리 확인 방법 본문
Windows server x86머신에서 하나의 프로세스가 사용 할 수 있는 최대 메모리 확인 방법입니다.
오래 전에 정리 한 내용인데 오늘 재 문의가 있어서 정리 해 봅니다.
아래 박스에 있는 내용을 memory.VBS 변경하신 후 명령프롬프트에서 실행 하시면 현재 Process가 사용 가능한 max 메모리를 확인 할 수 있습니다. 아래 링크다운 받으셔도 됩니다^^
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select MaxProcessMemorySize from Win32_OperatingSystem")
For Each objItem in colItems
Wscript.Echo "MaxProcessMemorySize: " & objItem.MaxProcessMemorySize
Next
감사합니다.^^