본문 바로가기
PRACTICE/Test

[OS, Windows] Windows cmd 명령어 (시스템 정보 추출)

by 1005 2021. 5. 3.
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

 

댓글