Windows

powershell 서버모델 및 cpu 확인

siron89 2014. 6. 26. 17:56

서버 정보

get-wmiobject win32_computersystem


CPU 정보

get-wmiObject win32_processor


CPU 소켓

get-wmiObject win32_processor | findstr SocketDesignation

CPU 코어

get-wmiObject win32_processor | findstr NumberOfCores

CPU 총 코어

get-wmiObject win32_processor | findstr NumberOfLogicalProcessors