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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// hostname
wmic cpu get systemname
// model
wmic csproduct get name
// serial
wmic bios get serialnumber
// os
wmic os get name
// os version
wmic os get version
// os bit
wmic os get osarchitecture
// cpu ghz
wmic cpu get name
// real memory total
wmic computersystem get totalphysicalmemory
// real memory free
wmic os get freephysicalmemory
// virtural memory total
wmic os get totalvirtualmemory
// virtual memory free
wmic os get freevirtualmemory
// memory physical count
wmic memorychip get tag
// cpu usage (%)
wmic cpu get loadpercentage
// cpu core
wmic cpu get numberofcores
// cpu thread
wmic cpu get numberoflogicalprocessors
// cpu physical count
wmic computersystem get numberofprocessors
// total process / user process
wmic path Win32_PerfFormattedData_PerfProc_Process get Name
// total thread
wmic path Win32_PerfFormattedData_PerfProc_Process get ThreadCount
// filesystem_name
wmic logicaldisk get description, deviceid
// filesystem free, total
wmic logicaldisk get freespace, size
// mac address, ip
ipconfig /all
|
'PRACTICE > Test' 카테고리의 다른 글
[csh] 파일의 내용을 한줄로 출력 (0) | 2021.06.26 |
---|---|
[csh] 경로 설정 및 폴더 생성 (0) | 2021.05.14 |
[OS, HP-UX] HP-UX 명령어 (시스템 정보 추출) (0) | 2021.04.20 |
댓글